24 lines
		
	
	
		
			659 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			659 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.0.5 on 2020-08-21 06:35
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('system', '0031_delete_bscodeset'),
 | |
|         ('project', '0021_auto_20200821_1432'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.RemoveField(
 | |
|             model_name='certapp',
 | |
|             name='professional_code',
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='certapp',
 | |
|             name='professional_code',
 | |
|             field=models.ManyToManyField(blank=True, null=True, related_name='certapp_professional_code', to='system.Dict', verbose_name='专业代码'),
 | |
|         ),
 | |
|     ]
 |