Section 1 & 2 - #Migration Run
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
# Generated by Django 5.2.9 on 2026-01-01 06:13
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('writer', '0013_add_caption_to_images'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ImagePrompts',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Image Prompt',
|
||||
'verbose_name_plural': 'Image Prompts',
|
||||
'proxy': True,
|
||||
'indexes': [],
|
||||
'constraints': [],
|
||||
},
|
||||
bases=('writer.images',),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='content',
|
||||
name='status',
|
||||
field=models.CharField(choices=[('draft', 'Draft'), ('review', 'Review'), ('approved', 'Approved'), ('published', 'Published')], db_index=True, default='draft', help_text='Content status', max_length=50),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user