mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 14:59:15 +02:00
17 lines
395 B
Python
17 lines
395 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("music", "0006_unique_mbid")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="track",
|
|
name="position",
|
|
field=models.PositiveIntegerField(blank=True, null=True),
|
|
)
|
|
]
|