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>
20 lines
981 B
SQL
20 lines
981 B
SQL
CREATE TABLE IF NOT EXISTS authsrv_group (
|
|
id uuid default uuid_generate_v4() PRIMARY KEY,
|
|
name character varying(256) NOT NULL,
|
|
description character varying(512) NOT NULL,
|
|
created_at timestamp with time zone NOT NULL,
|
|
modified_at timestamp with time zone NOT NULL,
|
|
trash boolean NOT NULL,
|
|
organization_id uuid NOT NULL REFERENCES authsrv_organization(id) DEFERRABLE INITIALLY DEFERRED,
|
|
partner_id uuid NOT NULL REFERENCES authsrv_partner(id) DEFERRABLE INITIALLY DEFERRED,
|
|
type character varying(64) NOT NULL
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS authsrv_group_name_d90b4524 ON authsrv_group USING btree (name);
|
|
|
|
CREATE INDEX IF NOT EXISTS authsrv_group_name_d90b4524_like ON authsrv_group USING btree (name varchar_pattern_ops);
|
|
|
|
CREATE INDEX IF NOT EXISTS authsrv_group_organization_id_e070e826 ON authsrv_group USING btree (organization_id);
|
|
|
|
CREATE INDEX IF NOT EXISTS authsrv_group_partner_id_1de9ab46 ON authsrv_group USING btree (partner_id);
|