dingxin_toolbox
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.
 
 
 

27 lines
933 B

# Generated by Django 4.2.7 on 2026-05-09 09:30
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('group', '0002_alter_groupdata_table'),
]
operations = [
migrations.CreateModel(
name='GroupRuntime',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('runtime_key', models.CharField(max_length=150, verbose_name='运行时key')),
('runtime_value', models.CharField(max_length=300, verbose_name='运行时value')),
],
options={
'verbose_name': '集团数据运行时表',
'verbose_name_plural': '集团数据运行时表',
'db_table': 'group_runtime',
'db_table_comment': '集团数据运行时表',
},
),
]