Skip to content

Commit

Permalink
add indexes for timestamp columns
Browse files Browse the repository at this point in the history
  • Loading branch information
qimiko committed Nov 24, 2024
1 parent 04beb12 commit b71940a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions migrations/20241122212336_create_geode_versions.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ INSERT INTO geode_versions
('2.0.0-beta.27', '2.200', '2.204', '2.205', '2024-05-26T14:37:03Z', '6510df7c8557668744044471ed2a0391759c3f7f', FALSE),
('2.0.0-beta.4', '2.200', '2.204', '2.200', '2024-01-21T16:37:45Z', 'c2f626b93767ef3678b9df1daca14b89fec6c6f7', FALSE);

CREATE INDEX idx_geode_versions_created_at ON geode_versions(created_at);
2 changes: 2 additions & 0 deletions migrations/20241123052145_create_version_aliases.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ INSERT INTO gd_version_aliases
('2.2072', null, null, null, 1731130219),
('2.2073', null, null, null, 1731156923),
('2.2074', '27044C8B-76BD-303C-A035-5314AF1D9E6E', 'DB5CADC0-E533-3123-8A63-5A434FE391ED', 40, 1731376950);

CREATE INDEX idx_gd_version_aliases_added_at ON gd_version_aliases(added_at);

0 comments on commit b71940a

Please sign in to comment.