Skip to content

Commit

Permalink
Fixing some small sequence issues :/
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvolp12 committed Oct 24, 2024
1 parent d073c36 commit 9021f03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkg/consumer/store/schema/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ WHERE parent_post_actor_did IS NOT NULL
AND parent_post_rkey IS NOT NULL;
-- Subjects
CREATE TABLE collections (
id SERIAL PRIMARY KEY,
id BIGSERIAL PRIMARY KEY,
name TEXT NOT NULL,
UNIQUE (name)
);
Expand Down Expand Up @@ -337,4 +337,4 @@ CREATE TABLE stats_bitmaps (
updated_at TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP NOT NULL,
created_at TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP NOT NULL
);
CREATE INDEX stats_bitmaps_updated_at ON stats_bitmaps (updated_at DESC);
CREATE INDEX stats_bitmaps_updated_at ON stats_bitmaps (updated_at DESC);
2 changes: 1 addition & 1 deletion pkg/consumer/store/store_queries/models.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9021f03

Please sign in to comment.