24 lines
955 B
Python
24 lines
955 B
Python
# Generated by Django 3.2.9 on 2021-11-23 02:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mtm', '0035_auto_20211117_1637'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='recordformfield',
|
|
name='draw_template',
|
|
field=models.CharField(blank=True, max_length=200, null=True, verbose_name='绘图模板'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='recordformfield',
|
|
name='field_type',
|
|
field=models.CharField(choices=[('string', '字符串'), ('int', '整型'), ('float', '浮点'), ('boolean', '布尔'), ('date', '日期'), ('time', '时间'), ('datetime', '日期时间'), ('radio', '单选'), ('checkbox', '多选'), ('select', '单选下拉'), ('selects', '多选下拉'), ('textarea', '文本域'), ('draw', '绘图')], max_length=50, verbose_name='类型'),
|
|
),
|
|
]
|