This commit is contained in:
IGNY8 VPS (Salman)
2025-11-22 01:13:25 +00:00
parent 3735f99207
commit c84bb9bc14
10 changed files with 730 additions and 90 deletions

View File

@@ -0,0 +1,22 @@
# Generated migration to remove deprecated fields from ContentIdeas
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('planner', '0002_initial'),
]
operations = [
# Remove deprecated fields from ContentIdeas
migrations.RemoveField(
model_name='contentideas',
name='content_structure',
),
migrations.RemoveField(
model_name='contentideas',
name='content_type',
),
]