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

14 lines
390 B
MySQL
Raw Normal View History

2025-01-06 08:00:35 +01:00
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
2025-01-06 10:46:36 +01:00
, latest_in_position_order INT2 NOT NULL
2025-01-06 08:00:35 +01:00
, default_org_id TEXT
, iam_project_id TEXT
, console_client_id TEXT
, console_app_id TEXT
, default_language TEXT
);