2021-04-06 06:25:02 +03:00
|
|
|
-- This migration adds the schema notification table
|
2021-06-23 21:00:19 +03:00
|
|
|
--
|
2021-04-06 06:25:02 +03:00
|
|
|
-- NOTE: In OSS this table only contains a single row (indicated by ID 1).
|
|
|
|
-- This may change to allow multiple notifications in future.
|
2021-06-23 21:00:19 +03:00
|
|
|
CREATE TABLE IF NOT EXISTS hdb_catalog.hdb_schema_notifications
|
2021-04-06 06:25:02 +03:00
|
|
|
(
|
|
|
|
id INTEGER PRIMARY KEY CHECK (id = 1),
|
|
|
|
notification JSON NOT NULL,
|
|
|
|
resource_version INTEGER NOT NULL DEFAULT 1,
|
|
|
|
instance_id UUID NOT NULL,
|
|
|
|
updated_at TIMESTAMPTZ DEFAULT NOW()
|
|
|
|
);
|