Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion migrations/20250929000000_init_comments.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ CREATE TABLE IF NOT EXISTS comments (
edited_at TIMESTAMPTZ
);

CREATE INDEX IF NOT EXISTS idx_comments_mod_id ON comments (mod_id);
CREATE INDEX idx_comments_mod_id ON comments(mod_id);
CREATE INDEX idx_comments_author_id ON comments(author_id);
-- +goose StatementEnd

-- +goose Down
Expand Down
21 changes: 0 additions & 21 deletions migrations/20251114232657_migrations_create_comments_table.sql

This file was deleted.

Loading