Files
api/app/migrations/0022_register.py
2025-12-30 11:27:14 +07:00

29 lines
947 B
Python

# 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',
},
),
]