Skip to content
Snippets Groups Projects
Commit fcaa4375 authored by Armand Bahi's avatar Armand Bahi
Browse files

update colonne version pour accepter les version de plus de 10 caractères

parent 8aa63301
Branches
Tags
No related merge requests found
......@@ -18,7 +18,7 @@
ALTER TABLE s_vmap.seq_common OWNER TO u_vitis;
GRANT ALL ON TABLE s_vmap.seq_common TO vmap_admin;
GRANT SELECT ON TABLE s_vmap.seq_common TO vmap_user;
CREATE TABLE s_vmap.version( version character varying(10) NOT NULL, build integer NOT NULL, date timestamp with time zone NOT NULL, active boolean, CONSTRAINT pk_version PRIMARY KEY (version));
CREATE TABLE s_vmap.version( version character varying(100) NOT NULL, build integer NOT NULL, date timestamp with time zone NOT NULL, active boolean, CONSTRAINT pk_version PRIMARY KEY (version));
ALTER TABLE s_vmap.version OWNER TO u_vitis;
GRANT ALL ON TABLE s_vmap.version TO vmap_admin;
GRANT SELECT ON TABLE s_vmap.version TO vmap_user;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment