27 lines
694 B
Python
27 lines
694 B
Python
# Generated by Django 4.0.4 on 2022-05-05 13:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='AppTest',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=100, verbose_name='标题')),
|
|
],
|
|
options={
|
|
'verbose_name': '测试表单',
|
|
'verbose_name_plural': '测试表单',
|
|
'db_table': 'app_test',
|
|
},
|
|
),
|
|
]
|