Merge pull request #154 from Mezeporta/fix/guild-posts-soft-delete

fix: soft-delete guild posts instead of hard-deleting
This commit is contained in:
Houmgaor
2026-02-20 19:13:54 +01:00
committed by GitHub
2 changed files with 13 additions and 7 deletions

View File

@@ -0,0 +1,6 @@
BEGIN;
-- Add soft-delete column to guild_posts, matching the pattern used by characters and mail tables.
ALTER TABLE guild_posts ADD COLUMN IF NOT EXISTS deleted boolean DEFAULT false NOT NULL;
COMMIT;