16 lines
418 B
Python
16 lines
418 B
Python
# 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")
|
|
Group.objects.get_or_create(name="Burô du BDS")
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("bds", "0001_initial")]
|
|
|
|
operations = [
|
|
migrations.RunPython(create_bds_buro_group, migrations.RunPython.noop)
|
|
]
|