Web M&M
https://mam.matfyz.cz
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.
23 lines
588 B
23 lines
588 B
from django.db import migrations
|
|
|
|
|
|
def add_groups(apps, schema_editor):
|
|
Group = apps.get_model('auth', 'Group')
|
|
|
|
org_group = Group.objects.filter(name__exact='org').first()
|
|
if not org_group:
|
|
Group.objects.create(name='org')
|
|
resitel_group = Group.objects.filter(name__exact='resitel').first()
|
|
if not resitel_group:
|
|
Group.objects.create(name='resitel')
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('seminar', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(add_groups, migrations.RunPython.noop),
|
|
]
|
|
|