#93: reorganise Rerun, Diffusion, Schedule module (#95)

#93

Co-authored-by: bkfox <thomas bkfox net>
Reviewed-on: rc/aircox#95
This commit is contained in:
Thomas Kairos
2023-04-02 20:37:47 +02:00
parent 695e4d7c5d
commit cd19c26e82
37 changed files with 4791 additions and 842 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 3.2.12 on 2022-03-26 15:21
import aircox.models.sound
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("aircox", "0005_auto_20220318_1205"),
]
operations = [
migrations.AlterField(
model_name="sound",
name="file",
field=models.FileField(
db_index=True,
max_length=256,
upload_to=aircox.models.sound.Sound._upload_to,
verbose_name="file",
),
),
]