16 lines
378 B
Python
16 lines
378 B
Python
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
dependencies = [
|
||
|
|
("authoring", "0006_alter_sceneideation_candidate_count"),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name="sceneideation",
|
||
|
|
name="target_book",
|
||
|
|
field=models.CharField(blank=True, max_length=160),
|
||
|
|
),
|
||
|
|
]
|