minor change

This commit is contained in:
daniel 2018-03-09 15:33:51 +01:00
parent 1f3b95f6d1
commit 2605064c02
1 changed files with 3 additions and 3 deletions

View File

@ -3086,11 +3086,11 @@ create table IF NOT EXISTS `tcluster_agent`(
-- ---------------------------------------------------------------------
create table IF NOT EXISTS `tmigration_queue`(
`id_metaconsole_agent` int unsigned not null,
`id_metaconsole_agent` int unsigned not null auto_increment,
`id_source_node` int unsigned not null,
`id_target_node` int unsigned not null,
`priority` int unsigned not null default 0,
`step` int unsigned not null default 0
`priority` int unsigned default 0,
`step` int unsigned default 0
) engine=InnoDB DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------------------