row format fixed removed to allow creation of regions table

row_format=fixed is not supported by innodb and has broken the creation
of the regions table during the first startup of ROBUST. It must be a
relict from MyISAM. Also removed the probably inappropriate table
comment.

Signed-off-by: Kevin Cozens <kevin@ve3syb.ca>
0.8.2-post-fixes
Shy Robbiani 2015-11-20 21:35:08 +01:00 committed by Kevin Cozens
parent 7c1f6ba913
commit e4e31d9acf
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
:VERSION 1
BEGIN;
CREATE TABLE `regions` (
`uuid` varchar(36) NOT NULL,
`regionHandle` bigint(20) unsigned NOT NULL,
@ -31,7 +33,9 @@ CREATE TABLE `regions` (
KEY `regionName` (`regionName`),
KEY `regionHandle` (`regionHandle`),
KEY `overrideHandles` (`eastOverrideHandle`,`westOverrideHandle`,`southOverrideHandle`,`northOverrideHandle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Rev. 3';
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
COMMIT;
:VERSION 2