issues fixes related to autaitmioan and ai idea genration
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
# Generated migration for adding primary_focus_keywords field
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('planner', '0010_add_taxonomy_soft_delete_and_keyword_fk_cascade'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
# Add primary_focus_keywords field to ContentIdeas
|
||||
migrations.AddField(
|
||||
model_name='contentideas',
|
||||
name='primary_focus_keywords',
|
||||
field=models.CharField(blank=True, help_text='1-2 main keywords this content targets', max_length=500),
|
||||
),
|
||||
]
|
||||
@@ -245,6 +245,7 @@ class ContentIdeasSerializer(serializers.ModelSerializer):
|
||||
'id',
|
||||
'idea_title',
|
||||
'description',
|
||||
'primary_focus_keywords',
|
||||
'content_type',
|
||||
'content_structure',
|
||||
'target_keywords',
|
||||
|
||||
Reference in New Issue
Block a user