CC-4199: Webstream: Please show warning when the URL is too long
-upped max webstream length to 512 -show warning if > 512 characters
This commit is contained in:
parent
f698b70341
commit
4b09d5eff2
3 changed files with 5 additions and 2 deletions
|
@ -95,7 +95,7 @@ CREATE TABLE cc_webstream (
|
|||
id integer DEFAULT nextval('cc_webstream_id_seq'::regclass) NOT NULL,
|
||||
name character varying(255) NOT NULL,
|
||||
description character varying(255) NOT NULL,
|
||||
url character varying(255) NOT NULL,
|
||||
url character varying(512) NOT NULL,
|
||||
length interval DEFAULT '00:00:00'::interval NOT NULL,
|
||||
creator_id integer NOT NULL,
|
||||
mtime timestamp(6) without time zone NOT NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue