From 8e8426da25392705765d052568524765464fb8cd Mon Sep 17 00:00:00 2001 From: Noah Hilverling Date: Thu, 11 Nov 2021 18:29:46 +0100 Subject: [PATCH] Schema: Fix index typos introduced by #385 --- schema/mysql/schema.sql | 2 +- schema/mysql/upgrades/1.0.0-rc2.sql | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/schema/mysql/schema.sql b/schema/mysql/schema.sql index eb9388d0..ca44b608 100644 --- a/schema/mysql/schema.sql +++ b/schema/mysql/schema.sql @@ -432,7 +432,7 @@ CREATE TABLE checkcommand_customvar ( PRIMARY KEY (id), - INDEX idx_checkcommand_customvar_checkcheckcommand_id (checkcommand_id, customvar_id), + INDEX idx_checkcommand_customvar_checkcommand_id (checkcommand_id, customvar_id), INDEX idx_checkcommand_customvar_customvar_id (customvar_id, checkcommand_id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC; diff --git a/schema/mysql/upgrades/1.0.0-rc2.sql b/schema/mysql/upgrades/1.0.0-rc2.sql index 9a0f3f5f..e4d863e3 100644 --- a/schema/mysql/upgrades/1.0.0-rc2.sql +++ b/schema/mysql/upgrades/1.0.0-rc2.sql @@ -337,10 +337,12 @@ ALTER TABLE eventcommand_customvar ALTER TABLE notificationcommand_customvar DROP INDEX idx_notificationcommand_customvar_command_id, - DROP INDEX idx_notificationcommand_customvar_id; + DROP INDEX idx_notificationcommand_customvar_customvar_id; ALTER TABLE notification RENAME COLUMN command_id TO notificationcommand_id; +ALTER TABLE notification + MODIFY notificationcommand_id binary(20) NOT NULL COMMENT 'notificationcommand.id'; ALTER TABLE checkcommand_argument RENAME COLUMN command_id TO checkcommand_id;