fine tuning

This commit is contained in:
IGNY8 VPS (Salman)
2025-11-28 12:25:45 +00:00
parent 831b179c49
commit 0839455418
15 changed files with 840 additions and 95 deletions

View File

@@ -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
),
),
]