Untitled
unknown
plain_text
2 years ago
484 B
6
Indexable
# Generated by Django 4.1.2 on 2023-06-25 12:18
from django.contrib.auth.models import Group
from django.db import migrations
def create_groups():
teachers_group = Group(name="Teachers")
students_group = Group(name="Students")
teachers_group.save()
students_group.save()
class Migration(migrations.Migration):
dependencies = [
('auth', '__latest__'),
]
operations = [
migrations.RunPython(create_groups),
]
Editor is loading...