23 lines
		
	
	
	
		
			588 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			588 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.db import migrations
 | |
| 
 | |
| 
 | |
| def add_groups(apps, schema_editor):
 | |
|     Group = apps.get_model('auth', 'Group')
 | |
| 
 | |
|     org_group = Group.objects.filter(name__exact='org').first()
 | |
|     if not org_group:
 | |
|         Group.objects.create(name='org')
 | |
|     resitel_group = Group.objects.filter(name__exact='resitel').first()
 | |
|     if not resitel_group:
 | |
|         Group.objects.create(name='resitel')
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('seminar', '0001_initial'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.RunPython(add_groups, migrations.RunPython.noop),
 | |
|     ]
 |