diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:40:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:40:59 +0000 |
commit | bc4e624732bd51c0dd1e9529cf228e8c23127732 (patch) | |
tree | d95dab8960e9d02d3b95f8653074ad2e54ca207c /schema/mysql/upgrades/1.1.1.sql | |
parent | Initial commit. (diff) | |
download | icingadb-bc4e624732bd51c0dd1e9529cf228e8c23127732.tar.xz icingadb-bc4e624732bd51c0dd1e9529cf228e8c23127732.zip |
Adding upstream version 1.1.1.upstream/1.1.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'schema/mysql/upgrades/1.1.1.sql')
-rw-r--r-- | schema/mysql/upgrades/1.1.1.sql | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/schema/mysql/upgrades/1.1.1.sql b/schema/mysql/upgrades/1.1.1.sql new file mode 100644 index 0000000..264ecae --- /dev/null +++ b/schema/mysql/upgrades/1.1.1.sql @@ -0,0 +1,37 @@ +ALTER TABLE notification + MODIFY COLUMN name varchar(767) NOT NULL COMMENT '255+1+255+1+255, i.e. "host.name!service.name!notification.name"', + MODIFY COLUMN name_ci varchar(767) COLLATE utf8mb4_unicode_ci NOT NULL; + +ALTER TABLE customvar_flat MODIFY COLUMN flatvalue text DEFAULT NULL; + +ALTER TABLE customvar_flat + ADD INDEX idx_customvar_flat_flatname_flatvalue (flatname, flatvalue(255)) COMMENT 'Lists filtered by custom variable'; + +ALTER TABLE hostgroup + ADD INDEX idx_hostgroup_display_name (display_name) COMMENT 'Hostgroup list filtered/ordered by display_name', + ADD INDEX idx_hostgroup_name_ci (name_ci) COMMENT 'Hostgroup list filtered using quick search', + DROP INDEX idx_hostgroup_name, + ADD INDEX idx_hostgroup_name (name) COMMENT 'Host/service/host group list filtered by host group name; Hostgroup detail filter'; + +ALTER TABLE servicegroup + ADD INDEX idx_servicegroup_display_name (display_name) COMMENT 'Servicegroup list filtered/ordered by display_name', + ADD INDEX idx_servicegroup_name_ci (name_ci) COMMENT 'Servicegroup list filtered using quick search', + DROP INDEX idx_servicegroup_name, + ADD INDEX idx_servicegroup_name (name) COMMENT 'Host/service/service group list filtered by service group name; Servicegroup detail filter'; + +-- The following sequence of statements changes the type of history.event_type like the following statement would: +-- +-- ALTER TABLE history MODIFY event_type enum('state_change', 'ack_clear', 'downtime_end', 'flapping_end', 'comment_remove', 'comment_add', 'flapping_start', 'downtime_start', 'ack_set', 'notification') NOT NULL; +-- +-- It's just much faster to add a second column, copy the column using an UPDATE statement and then replace the +-- old column with the one just generated. Table locking ensures that no other connection inserts data in the meantime. +LOCK TABLES history WRITE; +ALTER TABLE history ADD COLUMN event_type_new enum('state_change', 'ack_clear', 'downtime_end', 'flapping_end', 'comment_remove', 'comment_add', 'flapping_start', 'downtime_start', 'ack_set', 'notification') NOT NULL AFTER event_type; +UPDATE history SET event_type_new = event_type; +ALTER TABLE history + DROP COLUMN event_type, + CHANGE COLUMN event_type_new event_type enum('state_change', 'ack_clear', 'downtime_end', 'flapping_end', 'comment_remove', 'comment_add', 'flapping_start', 'downtime_start', 'ack_set', 'notification') NOT NULL; +UNLOCK TABLES; + +INSERT INTO icingadb_schema (version, timestamp) + VALUES (4, CURRENT_TIMESTAMP() * 1000); |