Initial commit (Clean history)
This commit is contained in:
28
app/migrations/0022_register.py
Normal file
28
app/migrations/0022_register.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# Generated by Django 4.2.4 on 2024-10-15 22:19
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0021_token_city_token_country_token_loc_token_org_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Register',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('fullname', models.CharField(max_length=50)),
|
||||
('phone', models.CharField(max_length=50)),
|
||||
('email', models.CharField(max_length=50)),
|
||||
('note', models.TextField()),
|
||||
('create_time', models.DateTimeField(auto_now_add=True, null=True)),
|
||||
('update_time', models.DateTimeField(null=True)),
|
||||
],
|
||||
options={
|
||||
'db_table': 'register',
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user