30 lines
1.2 KiB
MySQL
30 lines
1.2 KiB
MySQL
|
DO $$DECLARE
|
||
|
this_version CONSTANT varchar := '00.01.032';
|
||
|
BEGIN
|
||
|
PERFORM * FROM "DBVersion" WHERE version = this_version;
|
||
|
IF FOUND THEN RETURN; END IF;
|
||
|
|
||
|
CREATE TABLE public."NTFQueueOutbox"
|
||
|
(
|
||
|
id uuid NOT NULL,
|
||
|
exchange character varying(200) COLLATE pg_catalog."default" NOT NULL,
|
||
|
route character varying(200) COLLATE pg_catalog."default" NOT NULL,
|
||
|
message_id uuid NOT NULL,
|
||
|
notify_status character varying(100) COLLATE pg_catalog."default" NOT NULL,
|
||
|
retry_count integer NOT NULL,
|
||
|
published_at timestamp without time zone,
|
||
|
confirmed_at timestamp without time zone,
|
||
|
tenant uuid,
|
||
|
is_active timestamp without time zone NOT NULL,
|
||
|
created_at timestamp without time zone NOT NULL,
|
||
|
updated_at timestamp without time zone NOT NULL,
|
||
|
CONSTRAINT "NTFQueueOutbox_pkey" PRIMARY KEY (id),
|
||
|
CONSTRAINT "NTFQueueOutbox_tennat_fkey" FOREIGN KEY (tenant)
|
||
|
REFERENCES public."Tenant" (id) MATCH SIMPLE
|
||
|
ON UPDATE NO ACTION
|
||
|
ON DELETE NO ACTION
|
||
|
);
|
||
|
|
||
|
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.032', '2023-12-05 12:00:00.000000+02', now(), 'Add table NTFQueueOutboox.');
|
||
|
|
||
|
END$$;
|