Skip to content

Commit

Permalink
fix case in sql
Browse files Browse the repository at this point in the history
  • Loading branch information
adwski committed Jan 26, 2024
1 parent 2c8ee68 commit 8b5504c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/api/video/store/migrations/00001_init.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ CREATE TABLE videos (
CONSTRAINT user_uid_not_empty CHECK (user_id != '')
);

CREATE UNIQUE INDEX videos_id On videos (id);
CREATE INDEX videos_user_id On videos (user_id);
CREATE UNIQUE INDEX videos_id ON videos (id);
CREATE INDEX videos_user_id ON videos (user_id);
CREATE INDEX videos_status ON videos (status);
CREATE INDEX videos_created_at ON videos (created_at);

Expand Down

0 comments on commit 8b5504c

Please sign in to comment.