24 lines
		
	
	
		
			641 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			641 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.2.9 on 2022-04-19 03:09
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('mtm', '0049_auto_20220222_0944'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='recordform',
 | |
|             name='export_template',
 | |
|             field=models.CharField(blank=True, max_length=200, null=True, verbose_name='导出模板'),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='recordformfield',
 | |
|             name='span',
 | |
|             field=models.PositiveSmallIntegerField(default=12, verbose_name='span值'),
 | |
|         ),
 | |
|     ]
 |