mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 23:55:24 +00:00
15 lines
383 B
Python
15 lines
383 B
Python
from django.db import models, migrations
|
|
|
|
def apply_migration(apps, schema_editor):
|
|
Group = apps.get_model('auth', 'Group')
|
|
Group.objects.create(name='Technicians')
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('admin', '0002_auto_20200609_0830'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(apply_migration)
|
|
]
|