mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 18:23:27 +00:00
32 lines
759 B
Python
32 lines
759 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0005_auto_20160717_1459'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='user',
|
||
|
options={},
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='user',
|
||
|
name='is_superuser',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='user',
|
||
|
name='user_permissions',
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='user',
|
||
|
name='groups',
|
||
|
field=models.ManyToManyField(blank=True, to='core.RealGroup', related_name='users'),
|
||
|
),
|
||
|
]
|