-
-
Notifications
You must be signed in to change notification settings - Fork 388
Closed
Labels
Description
Can we have the commit property value to be larger than 200? we need it at least to be 1024
CREATE TABLE dave.jv_commit_property
(
property_name character varying(200) NOT NULL,
property_value character varying(200),
commit_fk bigint NOT NULL,
CONSTRAINT jv_commit_property_pk PRIMARY KEY (commit_fk, property_name),
CONSTRAINT jv_commit_property_commit_fk FOREIGN KEY (commit_fk)
REFERENCES dave.jv_commit (commit_pk) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION
)