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>
12 lines
428 B
SQL
12 lines
428 B
SQL
CREATE TABLE IF NOT EXISTS cluster_namespaces (
|
|
cluster_id uuid NOT NULL REFERENCES cluster_clusters(id) DEFERRABLE INITIALLY DEFERRED,
|
|
name varchar NOT NULL,
|
|
hash varchar NOT NULL,
|
|
deleted_at timestamp WITH time zone,
|
|
type varchar not null,
|
|
namespace jsonb not null,
|
|
conditions jsonb not null default '[]'::jsonb,
|
|
status jsonb not null default '{}'::jsonb,
|
|
PRIMARY KEY (cluster_id, name)
|
|
);
|