correct misspelling

This commit is contained in:
root 2010-12-03 10:06:23 -08:00 committed by Alex Huang
parent 4fc18ce760
commit 8a4d170892
2 changed files with 1 additions and 3 deletions

View File

@ -314,8 +314,6 @@ public class SnapshotManagerImpl implements SnapshotManager, SnapshotService, Ma
}
return createdSnapshot;
}

View File

@ -445,7 +445,7 @@ CREATE TABLE `cloud`.`firewall_rules` (
`xid` char(40) NOT NULL COMMENT 'external id',
`created` datetime COMMENT 'Date created',
PRIMARY KEY (`id`),
CONSTRAINT `fk_firewall_rules__network_id` FOREIGN KEY(`network_id`) REFERENCES `network`(`id`) ON DELETE CASCADE,
CONSTRAINT `fk_firewall_rules__network_id` FOREIGN KEY(`network_id`) REFERENCES `networks`(`id`) ON DELETE CASCADE,
CONSTRAINT `fk_firewall_rules__account_id` FOREIGN KEY(`account_id`) REFERENCES `account`(`id`) ON DELETE CASCADE,
CONSTRAINT `fk_firewall_rules__domain_id` FOREIGN KEY(`domain_id`) REFERENCES `domain`(`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;