fine tuning
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
# Generated manually on 2025-11-28
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('writer', '0009_add_word_count_to_tasks'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='content',
|
||||
name='status',
|
||||
field=models.CharField(
|
||||
choices=[
|
||||
('draft', 'Draft'),
|
||||
('review', 'Review'),
|
||||
('published', 'Published')
|
||||
],
|
||||
db_index=True,
|
||||
default='draft',
|
||||
help_text='Content status',
|
||||
max_length=50
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user