From 0f95758ef44a1b77b0045e7cde4d1c3803501bda Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Fri, 6 May 2022 19:58:19 +0530 Subject: [PATCH] schema,upgrade: fix wrong comment for new columns of cloud.event Signed-off-by: Abhishek Kumar --- .../src/main/resources/META-INF/db/schema-41610to41700.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/schema/src/main/resources/META-INF/db/schema-41610to41700.sql b/engine/schema/src/main/resources/META-INF/db/schema-41610to41700.sql index 382a2d415a4e..31dc50c42bd2 100644 --- a/engine/schema/src/main/resources/META-INF/db/schema-41610to41700.sql +++ b/engine/schema/src/main/resources/META-INF/db/schema-41610to41700.sql @@ -888,8 +888,8 @@ left join `cloud`.`mshost_status` on -- Alter event table to add resource_id and resource_type ALTER TABLE `cloud`.`event` - ADD COLUMN `resource_id` bigint unsigned COMMENT 'ID of the resource associated with the even' AFTER `domain_id`, - ADD COLUMN `resource_type` varchar(32) COMMENT 'Account role in the project (Owner or Regular)' AFTER `resource_id`; + ADD COLUMN `resource_id` bigint unsigned COMMENT 'ID of the resource associated with the event' AFTER `domain_id`, + ADD COLUMN `resource_type` varchar(32) COMMENT 'Type of the resource associated with the event' AFTER `resource_id`; DROP VIEW IF EXISTS `cloud`.`event_view`; CREATE VIEW `cloud`.`event_view` AS