Jul 22 - Update - add Rich-text editor, draft/publish, drag-to-reorder

This commit is contained in:
2026-07-22 17:13:26 -04:00
parent a39fa091fa
commit 69b97d51fe
15 changed files with 1295 additions and 23 deletions
+1
View File
@@ -28,6 +28,7 @@ CREATE TABLE IF NOT EXISTS topic (
media_url VARCHAR(500) NULL, -- image src, video src, or embed URL
media_caption VARCHAR(255) NULL,
sort_order INT NOT NULL DEFAULT 0,
is_published TINYINT(1) NOT NULL DEFAULT 1,
UNIQUE KEY uq_topic_slug (slug),
KEY idx_topic_section (section_id),
CONSTRAINT fk_topic_section FOREIGN KEY (section_id)