2018-04-26 18:18:24 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
2024-06-24 11:07:36 +00:00
|
|
|
|
2018-04-26 18:18:24 +00:00
|
|
|
import forum.models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
2018-10-04 19:29:19 +00:00
|
|
|
dependencies = [("forum", "0005_forumtopic_subscribed_users")]
|
2018-04-26 18:18:24 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-04 19:29:19 +00:00
|
|
|
model_name="forum",
|
|
|
|
name="edit_groups",
|
|
|
|
field=models.ManyToManyField(
|
|
|
|
blank=True,
|
2024-06-27 13:48:07 +00:00
|
|
|
default=forum.models.get_default_edit_group,
|
2018-10-04 19:29:19 +00:00
|
|
|
related_name="editable_forums",
|
|
|
|
to="core.Group",
|
|
|
|
),
|
2018-04-26 18:18:24 +00:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2018-10-04 19:29:19 +00:00
|
|
|
model_name="forum",
|
|
|
|
name="view_groups",
|
|
|
|
field=models.ManyToManyField(
|
|
|
|
blank=True,
|
2024-06-27 13:48:07 +00:00
|
|
|
default=forum.models.get_default_view_group,
|
2018-10-04 19:29:19 +00:00
|
|
|
related_name="viewable_forums",
|
|
|
|
to="core.Group",
|
|
|
|
),
|
2018-04-26 18:18:24 +00:00
|
|
|
),
|
|
|
|
]
|