19 lines
		
	
	
		
			437 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			437 B
		
	
	
	
		
			Python
		
	
	
	
# Generated by Django 3.2.12 on 2023-11-14 02:14
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('bi', '0002_dataset_cache_seconds'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='dataset',
 | 
						|
            name='default_param',
 | 
						|
            field=models.JSONField(blank=True, default=dict, verbose_name='默认查询参数'),
 | 
						|
        ),
 | 
						|
    ]
 |