Add Database Versioning
This commit is contained in:
parent
f8d343c128
commit
575fc70f32
|
@ -0,0 +1,10 @@
|
|||
CREATE TABLE public."DBVersion" (
|
||||
key character varying NOT NULL,
|
||||
version character varying NOT NULL,
|
||||
"releasedAt" timestamp with time zone NOT NULL,
|
||||
"deployedAt" timestamp with time zone,
|
||||
description text
|
||||
);
|
||||
|
||||
INSERT INTO public."DBVersion" VALUES ('DMPDB', '00.00.001', '2020-03-31 11:34:54.236152+03', now(), 'Add Database Versioning');
|
||||
|
Loading…
Reference in New Issue