forked from rc/aircox

- Add configuration files for packaging - Precommit now uses ruff Co-authored-by: bkfox <thomas bkfox net> Reviewed-on: rc/aircox#127
56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
# Generated by Django 3.1.1 on 2020-09-21 23:56
|
|
|
|
import ckeditor_uploader.fields
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("aircox", "0003_auto_20200530_1116"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="comment",
|
|
options={
|
|
"verbose_name": "Comment",
|
|
"verbose_name_plural": "Comments",
|
|
},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name="navitem",
|
|
options={
|
|
"ordering": ("order", "pk"),
|
|
"verbose_name": "Menu item",
|
|
"verbose_name_plural": "Menu items",
|
|
},
|
|
),
|
|
migrations.RemoveField(
|
|
model_name="sound",
|
|
name="embed",
|
|
),
|
|
migrations.AlterField(
|
|
model_name="page",
|
|
name="content",
|
|
field=ckeditor_uploader.fields.RichTextUploadingField(blank=True, null=True, verbose_name="content"),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="sound",
|
|
name="program",
|
|
field=models.ForeignKey(
|
|
default=1,
|
|
help_text="program related to it",
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
to="aircox.program",
|
|
verbose_name="program",
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AlterField(
|
|
model_name="staticpage",
|
|
name="content",
|
|
field=ckeditor_uploader.fields.RichTextUploadingField(blank=True, null=True, verbose_name="content"),
|
|
),
|
|
]
|