details improvement

This commit is contained in:
Daan Hoogland 2018-01-17 19:17:09 +01:00
parent 445e3b8050
commit 58964d9fdb
1 changed files with 1 additions and 1 deletions

View File

@ -534,7 +534,7 @@ CREATE TABLE IF NOT EXISTS `cloud`.`domain_details` (
`id` bigint unsigned NOT NULL auto_increment,
`domain_id` bigint unsigned NOT NULL COMMENT 'account id',
`name` varchar(255) NOT NULL,
`value` varchar(255) NOT NULL,
`value` varchar(255) NULL,
PRIMARY KEY (`id`),
CONSTRAINT `fk_domain_details__domain_id` FOREIGN KEY (`domain_id`) REFERENCES `domain`(`id`) ON DELETE CASCADE
)ENGINE=InnoDB DEFAULT CHARSET=utf8;