MaxKB/apps/setting/migrations/0007_model_model_params_for...
CaptainB 67f3ec34a1
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run
refactor: 模型设置支持配置参数
2024-10-15 21:22:34 +08:00

19 lines
429 B
Python

# Generated by Django 4.2.15 on 2024-10-15 14:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('setting', '0006_alter_model_status'),
]
operations = [
migrations.AddField(
model_name='model',
name='model_params_form',
field=models.JSONField(default=list, verbose_name='模型参数配置'),
),
]