From: Ray Lee Date: Sun, 11 Aug 2019 05:30:56 +0000 (-0700) Subject: DRYD-704: Set tenants authorities_initialized to false in create_db. X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=67f4f0d49dec8a3f0674863750ee41898e95136a;p=tmp%2Fjakarta-migration.git DRYD-704: Set tenants authorities_initialized to false in create_db. --- diff --git a/services/account/pstore/src/main/resources/db/postgresql/account.sql b/services/account/pstore/src/main/resources/db/postgresql/account.sql index e64dd9fb9..6289f74ed 100644 --- a/services/account/pstore/src/main/resources/db/postgresql/account.sql +++ b/services/account/pstore/src/main/resources/db/postgresql/account.sql @@ -30,4 +30,6 @@ CREATE TABLE IF NOT EXISTS tenants ( updated_at TIMESTAMP ); +UPDATE tenants SET authorities_initialized = FALSE; + CREATE SEQUENCE IF NOT EXISTS hibernate_sequence;