schema/mysql: allow for large property values
This commit is contained in:
parent
a71bdfeb44
commit
625de0d3aa
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE imported_property MODIFY property_value MEDIUMTEXT NULL DEFAULT NULL;
|
||||
|
|
@ -923,7 +923,7 @@ CREATE TABLE imported_rowset_row (
|
|||
CREATE TABLE imported_property (
|
||||
checksum VARBINARY(20) NOT NULL,
|
||||
property_name VARCHAR(64) NOT NULL,
|
||||
property_value TEXT NOT NULL,
|
||||
property_value MEDIUMTEXT NOT NULL,
|
||||
format enum ('string', 'expression', 'json'),
|
||||
PRIMARY KEY (checksum),
|
||||
KEY search_idx (property_name)
|
||||
|
|
Loading…
Reference in New Issue