20 lines
		
	
	
		
			494 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			494 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.12 on 2022-08-30 07:17
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('opm', '0002_initial'),
 | 
						|
        ('ecm', '0003_alter_notifysetting_filter_area_level'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name='eventcate',
 | 
						|
            name='opl_cates',
 | 
						|
            field=models.ManyToManyField(blank=True, to='opm.OplCate', verbose_name='关联许可证'),
 | 
						|
        ),
 | 
						|
    ]
 |