19 lines
		
	
	
		
			462 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			462 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.12 on 2025-09-04 08:47
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('wpm', '0122_auto_20250827_1522'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='mlogbdefect',
 | 
						|
            name='count_has',
 | 
						|
            field=models.DecimalField(decimal_places=1, default=0, max_digits=11, verbose_name='含有该缺陷的数量'),
 | 
						|
        ),
 | 
						|
    ]
 |