Add missing migration to initialise.sql for #3839 (#4212)

This commit is contained in:
Brandon Simmons 2020-03-27 00:50:45 -04:00 committed by GitHub
parent 4ce4eb1d2f
commit eafdda4f33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,8 @@
-- @<new version>_to_<old version>.sql@.
-- 4. If making a new release, add the mapping from application version to catalog
-- schema version in @src-rsr/catalog_versions.txt@.
-- 5. If appropriate, add the change to @server/src-rsr/initialise.sql@ for fresh installations
-- of hasura.
--
-- The Template Haskell code in this module will automatically compile the new migration script into
-- the @graphql-engine@ executable.

View File

@ -300,6 +300,7 @@ CREATE TABLE hdb_catalog.event_log
CREATE INDEX ON hdb_catalog.event_log (trigger_name);
CREATE INDEX ON hdb_catalog.event_log (locked);
CREATE INDEX ON hdb_catalog.event_log (delivered);
CREATE INDEX ON hdb_catalog.event_log (created_at);
CREATE TABLE hdb_catalog.event_invocation_logs
(