mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 17:29:17 +02:00
18 lines
514 B
Python
18 lines
514 B
Python
# Generated by Django 2.0.2 on 2018-02-20 19:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('music', '0019_populate_mimetypes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='importbatch',
|
|
name='status',
|
|
field=models.CharField(choices=[('pending', 'Pending'), ('finished', 'Finished'), ('errored', 'Errored'), ('skipped', 'Skipped')], default='pending', max_length=30),
|
|
),
|
|
]
|