19 lines
		
	
	
		
			439 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			439 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.2.12 on 2025-10-16 08:29
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('wf', '0003_workflow_view_path'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='workflow',
 | |
|             name='view_path2',
 | |
|             field=models.TextField(blank=True, null=True, verbose_name='前端自定义页面路径2'),
 | |
|         ),
 | |
|     ]
 |