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
2 changes: 2 additions & 0 deletions database_admin/migrations/166_account_advisory_idx.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DROP INDEX IF EXISTS account_advisory_advisory_id_idx;

2 changes: 2 additions & 0 deletions database_admin/migrations/166_account_advisory_idx.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX ON account_advisory (advisory_id);

3 changes: 2 additions & 1 deletion database_admin/schema/create_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS schema_migrations


INSERT INTO schema_migrations
VALUES (165, false);
VALUES (166, false);

-- ---------------------------------------------------------------------------
-- Functions
Expand Down Expand Up @@ -904,6 +904,7 @@ SELECT grant_table_partitions('SELECT, INSERT, UPDATE, DELETE', 'account_advisor

CREATE INDEX ON account_advisory (systems_applicable);
CREATE INDEX ON account_advisory (systems_installable);
CREATE INDEX ON account_advisory (advisory_id);

-- repo
CREATE TABLE IF NOT EXISTS repo
Expand Down
Loading