trash models added, first attempt for remainign issues

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-12 13:39:42 +00:00
parent 28cb698579
commit 7d4d309677
20 changed files with 1084 additions and 106 deletions

View File

@@ -0,0 +1,52 @@
# Generated by Django 5.2.10 on 2026-01-12 13:36
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('planner', '0008_soft_delete'),
]
operations = [
migrations.CreateModel(
name='ClustersTrash',
fields=[
],
options={
'verbose_name': 'Cluster (Trash)',
'verbose_name_plural': 'Clusters (Trash)',
'proxy': True,
'indexes': [],
'constraints': [],
},
bases=('planner.clusters',),
),
migrations.CreateModel(
name='ContentIdeasTrash',
fields=[
],
options={
'verbose_name': 'Content Idea (Trash)',
'verbose_name_plural': 'Content Ideas (Trash)',
'proxy': True,
'indexes': [],
'constraints': [],
},
bases=('planner.contentideas',),
),
migrations.CreateModel(
name='KeywordsTrash',
fields=[
],
options={
'verbose_name': 'Keyword (Trash)',
'verbose_name_plural': 'Keywords (Trash)',
'proxy': True,
'indexes': [],
'constraints': [],
},
bases=('planner.keywords',),
),
]