You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
776 B
23 lines
776 B
# Generated by Django 4.2.7 on 2024-01-27 22:38
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('blog', '0005_rename_indexcontent_index_post_content_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Sexy_Posts',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=200)),
|
|
('content', models.TextField()),
|
|
('short_description', models.TextField(blank=True, max_length=300, null=True)),
|
|
('pub_date', models.DateTimeField(verbose_name='date published')),
|
|
],
|
|
),
|
|
]
|
|
|