mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-28 08:14:04 +02:00
schema/mysql: allow for large property values
This commit is contained in:
parent
a71bdfeb44
commit
625de0d3aa
2
schema/mysql-changes/upgrade_44.sql
Normal file
2
schema/mysql-changes/upgrade_44.sql
Normal file
@ -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 (
|
CREATE TABLE imported_property (
|
||||||
checksum VARBINARY(20) NOT NULL,
|
checksum VARBINARY(20) NOT NULL,
|
||||||
property_name VARCHAR(64) NOT NULL,
|
property_name VARCHAR(64) NOT NULL,
|
||||||
property_value TEXT NOT NULL,
|
property_value MEDIUMTEXT NOT NULL,
|
||||||
format enum ('string', 'expression', 'json'),
|
format enum ('string', 'expression', 'json'),
|
||||||
PRIMARY KEY (checksum),
|
PRIMARY KEY (checksum),
|
||||||
KEY search_idx (property_name)
|
KEY search_idx (property_name)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user