24 lines
608 B
Python
24 lines
608 B
Python
# Generated by Django 5.0.6 on 2024-06-23 11:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Todo',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=100)),
|
|
('description', models.TextField()),
|
|
('completed', models.BooleanField(default=False)),
|
|
],
|
|
),
|
|
]
|