35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# Generated by Django 2.1.5 on 2019-03-28 10:03
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('safesite', '0121_yjyc_observevalue'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Operation',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='Operationsetting',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=100, verbose_name='许可证类型')),
|
|
('submittime', models.DateTimeField(default=django.utils.timezone.now, verbose_name='创建时间')),
|
|
('modifytime', models.DateTimeField(auto_now=True)),
|
|
('deletemark', models.IntegerField(default='1')),
|
|
('usecomps', models.CharField(default=',1,', max_length=200)),
|
|
('nousecomps', models.CharField(default='', max_length=200)),
|
|
('wxfx', models.TextField()),
|
|
('aqcs', models.TextField()),
|
|
],
|
|
),
|
|
]
|