argos/dmp-db-scema/updates/00.01.038_add_ntf_QueueOutb...

31 lines
1.2 KiB
MySQL
Raw Normal View History

2023-12-05 10:56:25 +01:00
DO $$DECLARE
2024-02-21 17:37:24 +01:00
this_version CONSTANT varchar := '00.01.038';
2023-12-05 10:56:25 +01:00
BEGIN
PERFORM * FROM "DBVersion" WHERE version = this_version;
IF FOUND THEN RETURN; END IF;
2023-12-06 10:34:24 +01:00
CREATE TABLE public."ntf_QueueOutbox"
2023-12-05 10:56:25 +01:00
(
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,
2024-03-29 13:32:47 +01:00
notify_status smallint NOT NULL,
2023-12-05 10:56:25 +01:00
retry_count integer NOT NULL,
published_at timestamp without time zone,
confirmed_at timestamp without time zone,
tenant uuid,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
2023-12-06 10:34:24 +01:00
message text COLLATE pg_catalog."default" NOT NULL,
is_active smallint NOT NULL,
CONSTRAINT "ntf_QueueOutbox_pkey" PRIMARY KEY (id),
CONSTRAINT "ntf_QueueOutbox_tenant_fkey" FOREIGN KEY (tenant)
2023-12-05 10:56:25 +01:00
REFERENCES public."Tenant" (id) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
);
2024-02-21 17:37:24 +01:00
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.01.038', '2023-12-05 12:00:00.000000+02', now(), 'Add table ntf_QueueOutbox.');
2023-12-05 10:56:25 +01:00
END$$;