| 12345678910111213141516171819202122232425 |
- # Generated by Django 4.2.29 on 2026-03-05 11:58
- from django.db import migrations, models
- class Migration(migrations.Migration):
- initial = True
- dependencies = [
- ]
- operations = [
- migrations.CreateModel(
- name='Document',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('title', models.CharField(max_length=255)),
- ('introduction', models.TextField(help_text='The introductory section of the document.')),
- ('main_body', models.TextField(help_text='The main content or analysis.')),
- ('conclusion', models.TextField(help_text='The concluding remarks or summary.')),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ],
- ),
- ]
|