21 lines
		
	
	
		
			580 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			580 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.0.5 on 2020-10-27 08:24
 | |
| 
 | |
| from django.db import migrations, models
 | |
| import django.db.models.deletion
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('system', '0005_organization_sort'),
 | |
|         ('ability', '0015_remove_inspection_type'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='qualification',
 | |
|             name='ssbm',
 | |
|             field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='system_ssbm', to='system.Organization'),
 | |
|         ),
 | |
|     ]
 |