19 lines
		
	
	
		
			414 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			414 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.0.7 on 2020-07-27 01:33
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('employee', '0015_merge_20200727_0933'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='employee',
 | |
|             name='fields',
 | |
|             field=models.TextField(blank=True, verbose_name='专业领域'),
 | |
|         ),
 | |
|     ]
 |