Skip to content

Commit 41d920e

Browse files
committed
add missing comma
1 parent c7b27df commit 41d920e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

engine/schema/src/main/resources/META-INF/db/schema-42210to42300.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ CREATE TABLE IF NOT EXISTS `cloud`.`internal_backup_service_job` (
162162
`id` bigint NOT NULL UNIQUE AUTO_INCREMENT,
163163
`backup_id` bigint unsigned NOT NULL COMMENT 'The backup ID. Foreign key that points to the backups table.',
164164
`instance_id` bigint unsigned NOT NULL COMMENT 'The instance ID. Foreign key that points to the vm_instance table.',
165-
`account_id` bigint unsigned COMMENT 'Account ID of the owner of the VM.',
165+
`account_id` bigint(20) unsigned COMMENT 'Account ID of the owner of the VM.',
166166
`host_id` bigint unsigned COMMENT 'The host ID that is executing the compression. Foreign key that points to the host table.',
167167
`zone_id` bigint unsigned NOT NULL COMMENT 'The zone ID of the where the VM is. Foreign key that points to the data_center table',
168168
`attempts` int(32) unsigned NOT NULL DEFAULT 0,
@@ -175,7 +175,7 @@ CREATE TABLE IF NOT EXISTS `cloud`.`internal_backup_service_job` (
175175
CONSTRAINT `fk_internal_backup_service_job__backup_id` FOREIGN KEY (`backup_id`) REFERENCES `backups`(`id`),
176176
CONSTRAINT `fk_internal_backup_service_job__instance_id` FOREIGN KEY (`instance_id`) REFERENCES `vm_instance`(`id`),
177177
CONSTRAINT `fk_internal_backup_service_job__host_id` FOREIGN KEY (`host_id`) REFERENCES `host`(`id`),
178-
CONSTRAINT `fk_internal_backup_service_job__zone_id` FOREIGN KEY (`zone_id`) REFERENCES `data_center`(`id`)
178+
CONSTRAINT `fk_internal_backup_service_job__zone_id` FOREIGN KEY (`zone_id`) REFERENCES `data_center`(`id`),
179179
CONSTRAINT `fk_internal_backup_service_job__account_id` FOREIGN KEY (`account_id`) REFERENCES `account`(`id`)
180180
);
181181

0 commit comments

Comments
 (0)