21 lines
516 B
Python
21 lines
516 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2017-12-31 12:33
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('auth', '__first__'),
|
|
('edit', '0003_auto_20170415_1029'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='edit',
|
|
name='groups',
|
|
field=models.ManyToManyField(blank=True, related_name='edits', to='auth.Group'),
|
|
),
|
|
]
|