sureshanaparti commented on code in PR #9451:
URL: https://github.com/apache/cloudstack/pull/9451#discussion_r1745226517
##########
engine/schema/src/main/resources/META-INF/db/schema-41910to42000.sql:
##########
@@ -141,6 +141,26 @@ CREATE TABLE `cloud`.`webhook_delivery` (
CONSTRAINT `fk_webhook__webhook_id` FOREIGN KEY (`webhook_id`) REFERENCES
`webhook`(`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+-- Backup Repository NAS feature
+DROP TABLE IF EXISTS `cloud`.`backup_repository`;
+CREATE TABLE `cloud`.`backup_repository` (
+ `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'id of the backup
repository',
+ `uuid` varchar(255) NOT NULL COMMENT 'uuid of the backup repository',
+ `name` varchar(255) NOT NULL COMMENT 'name of the backup repository',
Review Comment:
```suggestion
`name` varchar(255) CHARACTER SET utf8mb4 NOT NULL COMMENT 'name of the
backup repository',
```
to support unicode chars in the name
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]