tJango/user/migrations/0001_initial.py

29 lines
750 B
Python
Raw Permalink Normal View History

2024-07-03 05:37:18 +03:00
# Generated by Django 5.0.6 on 2024-07-03 01:42
2024-06-29 03:03:21 +03:00
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
2024-07-03 05:37:18 +03:00
dependencies = []
2024-06-29 03:03:21 +03:00
operations = [
migrations.CreateModel(
2024-07-03 05:37:18 +03:00
name="User",
2024-06-29 03:03:21 +03:00
fields=[
2024-07-03 05:37:18 +03:00
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("username", models.CharField(max_length=15, unique=True)),
("date_created", models.DateTimeField(auto_now_add=True)),
2024-06-29 03:03:21 +03:00
],
),
]