2016-09-19 18:29:43 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.conf import settings
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.db import migrations, models
|
2016-09-19 18:29:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
2018-10-04 19:29:19 +00:00
|
|
|
dependencies = [("core", "0003_auto_20160902_1914")]
|
2016-09-19 18:29:43 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2018-10-04 19:29:19 +00:00
|
|
|
model_name="user",
|
|
|
|
name="godfathers",
|
|
|
|
field=models.ManyToManyField(
|
|
|
|
to=settings.AUTH_USER_MODEL, related_name="godchildren", blank=True
|
|
|
|
),
|
|
|
|
)
|
2016-09-19 18:29:43 +00:00
|
|
|
]
|