2026-04-27 21:06:23 -04:00
|
|
|
# Generated by Django 6.0 on 2026-04-28 00:59
|
2026-01-13 20:58:05 -05:00
|
|
|
|
2026-02-22 23:56:29 -05:00
|
|
|
import uuid
|
2026-01-13 20:58:05 -05:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
|
|
initial = True
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
operations = [
|
2026-02-07 22:47:04 -05:00
|
|
|
migrations.CreateModel(
|
2026-04-27 21:06:23 -04:00
|
|
|
name='Line',
|
2026-01-13 20:58:05 -05:00
|
|
|
fields=[
|
|
|
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
2026-02-07 22:47:04 -05:00
|
|
|
('text', models.TextField(default='')),
|
2026-01-13 20:58:05 -05:00
|
|
|
],
|
2026-02-07 22:47:04 -05:00
|
|
|
options={
|
|
|
|
|
'ordering': ('id',),
|
|
|
|
|
},
|
2026-01-13 20:58:05 -05:00
|
|
|
),
|
2026-04-27 21:06:23 -04:00
|
|
|
migrations.CreateModel(
|
|
|
|
|
name='Post',
|
|
|
|
|
fields=[
|
|
|
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
|
|
|
],
|
|
|
|
|
),
|
2026-01-13 20:58:05 -05:00
|
|
|
]
|