models delte and trash and cascade issues fixes

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-12 17:37:21 +00:00
parent 4ba3870878
commit ad828a9fcd
5 changed files with 198 additions and 12 deletions

View File

@@ -0,0 +1,20 @@
# Generated by Django 5.2.10 on 2026-01-12 16:50
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('igny8_core_auth', '0021_accounttrash_sectortrash_sitetrash'),
('planner', '0009_clusterstrash_contentideastrash_keywordstrash'),
]
operations = [
migrations.AlterField(
model_name='keywords',
name='seed_keyword',
field=models.ForeignKey(help_text='Reference to the global seed keyword', on_delete=django.db.models.deletion.CASCADE, related_name='site_keywords', to='igny8_core_auth.seedkeyword'),
),
]