mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 11:59:23 +00:00
All: Apply Black coding rules
This commit is contained in:
@ -6,23 +6,25 @@ from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('forum', '0001_initial'),
|
||||
]
|
||||
dependencies = [("forum", "0001_initial")]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='forum',
|
||||
options={'ordering': ['number']},
|
||||
),
|
||||
migrations.AlterModelOptions(name="forum", options={"ordering": ["number"]}),
|
||||
migrations.AddField(
|
||||
model_name='forum',
|
||||
name='number',
|
||||
field=models.IntegerField(verbose_name='number to choose a specific forum ordering', default=1),
|
||||
model_name="forum",
|
||||
name="number",
|
||||
field=models.IntegerField(
|
||||
verbose_name="number to choose a specific forum ordering", default=1
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='forum',
|
||||
name='edit_groups',
|
||||
field=models.ManyToManyField(related_name='editable_forums', blank=True, to='core.Group', default=[331]),
|
||||
model_name="forum",
|
||||
name="edit_groups",
|
||||
field=models.ManyToManyField(
|
||||
related_name="editable_forums",
|
||||
blank=True,
|
||||
to="core.Group",
|
||||
default=[331],
|
||||
),
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user