26 lines
745 B
Python
26 lines
745 B
Python
# Generated by Django 4.2.17 on 2025-02-01 08:42
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='User',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('username', models.CharField(max_length=150, unique=True)),
|
|
('email', models.EmailField(max_length=254, unique=True)),
|
|
('password', models.CharField(max_length=128)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
],
|
|
),
|
|
]
|