20 lines
435 B
Python
20 lines
435 B
Python
|
# Generated by Django 2.1.1 on 2018-10-12 13:26
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('quest', '0010_quest_banner_url'),
|
||
|
('user', '0002_user_anonymize'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='user',
|
||
|
name='subscriptions',
|
||
|
field=models.ManyToManyField(to='quest.Quest'),
|
||
|
),
|
||
|
]
|