feat: implement Phase 2 (Pulse, Admin, RC2)

This commit is contained in:
2025-12-08 21:00:23 +01:00
parent 78620d8f8a
commit 96754a1d1a
23 changed files with 1415 additions and 27 deletions

View File

@@ -0,0 +1,5 @@
-- Add new columns for Blog/Pulse feature
ALTER TABLE posts
ADD COLUMN IF NOT EXISTS tags JSON DEFAULT NULL,
ADD COLUMN IF NOT EXISTS excerpt TEXT DEFAULT NULL,
ADD COLUMN IF NOT EXISTS author VARCHAR(100) DEFAULT 'System';