Add transactional support for HSQLDB

This commit is contained in:
Igor Kulikov 2021-07-15 11:20:49 +03:00
parent 34a587ff02
commit dae0eb5212
2 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,9 @@
-- limitations under the License.
--
SET DATABASE SQL SYNTAX PGS TRUE;
SET DATABASE TRANSACTION CONTROL MVCC;
CREATE TABLE IF NOT EXISTS admin_settings (
id uuid NOT NULL CONSTRAINT admin_settings_pkey PRIMARY KEY,
created_time bigint NOT NULL,

View File

@ -15,6 +15,7 @@
--
SET DATABASE SQL SYNTAX PGS TRUE;
SET DATABASE TRANSACTION CONTROL MVCC;
CREATE TABLE IF NOT EXISTS ts_kv (
entity_id uuid NOT NULL,