mirror of
https://github.com/Rushilwiz/todos.git
synced 2025-04-28 07:49:50 -04:00
24 lines
583 B
Python
24 lines
583 B
Python
# Generated by Django 4.2.7 on 2023-11-04 18:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Task',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('title', models.CharField(max_length=200)),
|
|
('complete', models.BooleanField(default=False)),
|
|
('created', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|