Skip to content

Commit

Permalink
fix: pose noti의 unique index 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Dec 21, 2024
1 parent 9bf3911 commit 34c1d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/pose.sql
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ CREATE TABLE `pose_noti`
`modified_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '수정일',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT '자세 알림';
CREATE INDEX uidx__uid ON pose_noti (uid);
CREATE UNIQUE INDEX uidx__uid ON pose_noti (uid);

-- 포즈 레이아웃
CREATE TABLE `pose_layout`
Expand Down

0 comments on commit 34c1d4b

Please sign in to comment.