mirror of
https://github.com/paralus/paralus.git
synced 2026-08-24 15:47:19 +00:00
Make all admindb migration queries re-entrance so re-running migration would not fail. Signed-off-by: Akshay Gaikwad <akgaikwad001@gmail.com>
34 lines
1.5 KiB
SQL
34 lines
1.5 KiB
SQL
CREATE TABLE IF NOT EXISTS cluster_clusters (
|
|
id uuid default uuid_generate_v4() PRIMARY KEY,
|
|
organization_id uuid not null,
|
|
partner_id uuid not null,
|
|
project_id uuid not null,
|
|
metro_id uuid,
|
|
name varchar NOT NULL,
|
|
display_name varchar NOT NULL,
|
|
created_at timestamp WITH time zone NOT NULL,
|
|
modified_at timestamp WITH time zone,
|
|
trash boolean NOT NULL default false,
|
|
deleted_at timestamp with time zone,
|
|
labels jsonb NOT NULL DEFAULT '{}'::jsonb,
|
|
annotations jsonb NOT NULL DEFAULT '{}'::jsonb,
|
|
blueprint_ref varchar NOT NULL default '',
|
|
cluster_type text,
|
|
override_selector varchar NOT NULL default '',
|
|
token varchar not null REFERENCES cluster_tokens(name) DEFERRABLE INITIALLY DEFERRED,
|
|
conditions jsonb NOT NULL default '[]'::jsonb,
|
|
published_blueprint varchar NOT NULL default '',
|
|
system_task_count integer NOT NULL DEFAULT 0,
|
|
custom_task_count integer NOT NULL DEFAULT 0,
|
|
auxiliary_task_count integer NOT NULL DEFAULT 0,
|
|
extra jsonb NOT NULL DEFAULT '{}'::jsonb,
|
|
share_mode VARCHAR DEFAULT 'CUSTOM',
|
|
proxy_config jsonb
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS cluster_clusters_name_organization_id_partner_id_key ON cluster_clusters USING btree (name, organization_id, partner_id);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_cluster_blueprint ON cluster_clusters USING btree (blueprint_ref, published_blueprint);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_clusters_labels ON cluster_clusters USING GIN (labels jsonb_path_ops);
|