19 lines
		
	
	
		
			449 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			449 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.12 on 2025-06-11 03:15
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('pm', '0021_auto_20250317_1040'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='utask',
 | 
						|
            name='priority',
 | 
						|
            field=models.PositiveIntegerField(default=20, help_text='10:低;20:中;30:高', verbose_name='优先级'),
 | 
						|
        ),
 | 
						|
    ]
 |