docs
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
# Generated migration to make Content.task nullable for Phase 4 synced content
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('writer', '0009_add_content_site_source_fields'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='content',
|
||||
name='task',
|
||||
field=models.OneToOneField(
|
||||
blank=True,
|
||||
help_text='The task this content belongs to',
|
||||
null=True,
|
||||
on_delete=models.CASCADE,
|
||||
related_name='content_record',
|
||||
to='writer.tasks'
|
||||
),
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user