mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
24 lines
592 B
Python
24 lines
592 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import core.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("core", "0028_auto_20171216_2044")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="page",
|
|
name="owner_group",
|
|
field=models.ForeignKey(
|
|
verbose_name="owner group",
|
|
default=core.models.Page.get_default_owner_group,
|
|
related_name="owned_page",
|
|
to="core.Group",
|
|
),
|
|
)
|
|
]
|