ai fixes
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# Generated manually on 2025-11-26
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.core.validators
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('writer', '0008_field_rename_implementation'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='tasks',
|
||||
name='word_count',
|
||||
field=models.IntegerField(
|
||||
default=1000,
|
||||
validators=[django.core.validators.MinValueValidator(100)],
|
||||
help_text='Target word count for content generation'
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user