Andisha Logo
-- Posts: drafts + post types + content warnings (MySQL) -- 1) Expand title limit to match UI (max 300) ALTER TABLE posts MODIFY title VARCHAR(300) NOT NULL; -- 2) Add post type + link URL ALTER TABLE posts ADD COLUMN type ENUM('text','image','link') NOT NULL DEFAULT 'text' AFTER content, AD – Andisha