29 lines
		
	
	
		
			990 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			990 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.0.5 on 2020-07-10 01:12
 | |
| 
 | |
| import django.contrib.postgres.fields
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('crm', '0006_auto_20200706_1048'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterModelOptions(
 | |
|             name='enterpriseaddress',
 | |
|             options={'verbose_name': '组织地址', 'verbose_name_plural': '组织地址'},
 | |
|         ),
 | |
|         migrations.AlterField(
 | |
|             model_name='enterpriseaddress',
 | |
|             name='code',
 | |
|             field=models.CharField(blank=True, max_length=1000, null=True, verbose_name='地址邮编'),
 | |
|         ),
 | |
|         migrations.AlterField(
 | |
|             model_name='enterpriseaddress',
 | |
|             name='type',
 | |
|             field=models.CharField(choices=[('注册地址', '注册地址'), ('通信地址', '通信地址'), ('生产地址', '生产地址')], default='生产地址', max_length=50, verbose_name='地址类型'),
 | |
|         ),
 | |
|     ]
 |