You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
685 B
26 lines
685 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-12-05 18:23
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('achievements', '0003_auto_20171205_1821'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='achievements',
|
|
name='user',
|
|
),
|
|
migrations.AddField(
|
|
model_name='achievements',
|
|
name='user',
|
|
field=models.ManyToManyField(to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|
|
|