24 lines
		
	
	
		
			672 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			672 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.0.5 on 2020-10-20 08:01
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('ability', '0013_inspection'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='inspection',
 | 
						|
            name='sszx',
 | 
						|
            field=models.TextField(blank=True, null=True, verbose_name='所属中心'),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='inspection',
 | 
						|
            name='type',
 | 
						|
            field=models.CharField(choices=[('center', '总部'), ('sub', '分子公司')], default='center', max_length=50, verbose_name='所属类型'),
 | 
						|
        ),
 | 
						|
    ]
 |