2019-07-17 17:50:53 +02:00
|
|
|
# Generated by Django 2.2 on 2019-07-17 14:56
|
|
|
|
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
def create_bds_buro_group(apps, schema_editor):
|
|
|
|
Group = apps.get_model("auth", "Group")
|
2020-08-28 17:43:06 +02:00
|
|
|
Group.objects.get_or_create(name="Burô du BDS")
|
2019-07-17 17:50:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("bds", "0001_initial")]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RunPython(create_bds_buro_group, migrations.RunPython.noop)
|
|
|
|
]
|