Add Database Versioning

This commit is contained in:
George Kalampokis 2020-03-31 11:48:34 +03:00
parent f8d343c128
commit 575fc70f32
1 changed files with 10 additions and 0 deletions

View File

@ -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');