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.
12 lines
298 B
12 lines
298 B
import os, sys, django
|
|
|
|
sys.path.append("../")
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "lms.settings")
|
|
django.setup()
|
|
|
|
|
|
from django.contrib.auth.models import Group
|
|
|
|
if __name__ == '__main__':
|
|
Group.objects.get_or_create(name='students')
|
|
Group.objects.get_or_create(name='teachers') |