forked from rc/aircox
#93 Co-authored-by: bkfox <thomas bkfox net> Reviewed-on: rc/aircox#95
This commit is contained in:
@ -0,0 +1,33 @@
|
||||
# Generated by Django 4.1 on 2023-01-25 15:18
|
||||
|
||||
import aircox.models.sound
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("aircox", "0011_usersettings"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="sound",
|
||||
name="file",
|
||||
field=models.FileField(
|
||||
db_index=True,
|
||||
max_length=256,
|
||||
unique=True,
|
||||
upload_to=aircox.models.sound.Sound._upload_to,
|
||||
verbose_name="file",
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="station",
|
||||
name="default",
|
||||
field=models.BooleanField(
|
||||
default=False,
|
||||
help_text="use this station as the main one.",
|
||||
verbose_name="default station",
|
||||
),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user