댓글/회원/관리자 인증·프로필 흐름 보완과 관련 마이그레이션 및 문서를 함께 반영해 운영 동선을 안정화. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
349 B
SQL
10 lines
349 B
SQL
CREATE TABLE IF NOT EXISTS comment_likes (
|
|
comment_id UUID NOT NULL REFERENCES comments(id) ON DELETE CASCADE,
|
|
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
|
|
PRIMARY KEY (comment_id, user_id)
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS comment_likes_user_id_idx
|
|
ON comment_likes (user_id);
|