mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-09 19:40:19 +00:00
Add Forum ordering number
This commit is contained in:
28
forum/migrations/0002_auto_20170312_1753.py
Normal file
28
forum/migrations/0002_auto_20170312_1753.py
Normal file
@ -0,0 +1,28 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('forum', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
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),
|
||||
),
|
||||
migrations.AlterField(
|
||||
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