Files
kr-phim/server/database/migrations/0010_add_comment_pinned_spoiler.sql
ngthanhvu 3d075f320c Add database migration snapshots for comment_votes, comments, movies, and users tables
- Created 0009_snapshot.json with initial structure for comment_votes, comments, movies, and users tables.
- Created 0010_snapshot.json with updated structure for comments, including new fields: pinned and spoiler.
- Created 0011_snapshot.json with further updates to comments, adding anonymous field and refining existing structures.
2026-07-24 00:06:03 -04:00

4 lines
203 B
SQL

-- Add pinned and spoiler columns to comments table
ALTER TABLE `comments` ADD COLUMN `pinned` boolean NOT NULL DEFAULT false;
ALTER TABLE `comments` ADD COLUMN `spoiler` boolean NOT NULL DEFAULT false;