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

@@ -79,7 +79,7 @@ class Keywords(SoftDeletableModel, SiteSectorBaseModel):
# Required: Link to global SeedKeyword
seed_keyword = models.ForeignKey(
SeedKeyword,
on_delete=models.PROTECT, # Prevent deletion if Keywords reference it
on_delete=models.CASCADE, # Allow deletion of SeedKeyword (cascades to Keywords)
related_name='site_keywords',
help_text="Reference to the global seed keyword"
)