mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-15 02:33:22 +00:00
27 lines
557 B
Python
27 lines
557 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0004_preferences'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='user',
|
||
|
name='edit_groups',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='user',
|
||
|
name='owner_group',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='user',
|
||
|
name='view_groups',
|
||
|
),
|
||
|
]
|