You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
715 B
26 lines
715 B
# Generated by Django 4.2.7 on 2026-07-04 13:58 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('ai', '0013_aimodel_current_used'), |
|
] |
|
|
|
operations = [ |
|
migrations.CreateModel( |
|
name='AiRuntime', |
|
fields=[ |
|
('id', models.AutoField(primary_key=True, serialize=False)), |
|
('runtime_key', models.CharField(max_length=50)), |
|
('runtime_val', models.TextField()), |
|
], |
|
options={ |
|
'verbose_name': 'AI运行时', |
|
'verbose_name_plural': 'AI运行时', |
|
'db_table': 'ai_runtime', |
|
}, |
|
), |
|
]
|
|
|