22 lines
500 B
Python
22 lines
500 B
Python
|
|
# Generated by Django 6.0 on 2026-01-30 20:02
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
initial = True
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.CreateModel(
|
||
|
|
name='User',
|
||
|
|
fields=[
|
||
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
|
('email', models.EmailField(max_length=254, unique=True)),
|
||
|
|
],
|
||
|
|
),
|
||
|
|
]
|