34 lines
746 B
Python
34 lines
746 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.22 on 2019-08-09 06:02
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0025_auto_20190808_1213'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterUniqueTogether(
|
|
name='right',
|
|
unique_together=set([]),
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='right',
|
|
name='right',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='right',
|
|
name='user',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='ListRight',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Right',
|
|
),
|
|
]
|