zitadel/cmd/setup/46/cockroach/01_instances_table.sql

14 lines
390 B
SQL

CREATE TABLE IF NOT EXISTS instances (
id TEXT PRIMARY KEY
, name TEXT NOT NULL
, change_date TIMESTAMPTZ NOT NULL
, creation_date TIMESTAMPTZ NOT NULL
, latest_position NUMERIC NOT NULL
, latest_in_position_order INT2 NOT NULL
, default_org_id TEXT
, iam_project_id TEXT
, console_client_id TEXT
, console_app_id TEXT
, default_language TEXT
);