kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
56 wiersze
1.6 KiB
Python
56 wiersze
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("music", "0003_auto_20151222_2233"),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="TrackFavorite",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
serialize=False,
|
|
auto_created=True,
|
|
verbose_name="ID",
|
|
primary_key=True,
|
|
),
|
|
),
|
|
(
|
|
"creation_date",
|
|
models.DateTimeField(default=django.utils.timezone.now),
|
|
),
|
|
(
|
|
"track",
|
|
models.ForeignKey(
|
|
related_name="track_favorites",
|
|
to="music.Track",
|
|
on_delete=models.CASCADE,
|
|
),
|
|
),
|
|
(
|
|
"user",
|
|
models.ForeignKey(
|
|
related_name="track_favorites",
|
|
to=settings.AUTH_USER_MODEL,
|
|
on_delete=models.CASCADE,
|
|
),
|
|
),
|
|
],
|
|
options={"ordering": ("-creation_date",)},
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name="trackfavorite", unique_together=set([("track", "user")])
|
|
),
|
|
]
|