Initial commit that merge both the front end and the API in the same repository
This commit is contained in:
commit
76f98b74dd
285 changed files with 51318 additions and 0 deletions
28
api/funkwhale_api/music/migrations/0006_unique_mbid.py
Normal file
28
api/funkwhale_api/music/migrations/0006_unique_mbid.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('music', '0005_deduplicate'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='album',
|
||||
name='mbid',
|
||||
field=models.UUIDField(null=True, editable=False, unique=True, blank=True, db_index=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='artist',
|
||||
name='mbid',
|
||||
field=models.UUIDField(null=True, editable=False, unique=True, blank=True, db_index=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='track',
|
||||
name='mbid',
|
||||
field=models.UUIDField(null=True, editable=False, unique=True, blank=True, db_index=True),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue