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>
This commit is contained in:
Shy Robbiani
2015-11-21 20:08:20 -05:00
committed by Kevin Cozens
parent 7c1f6ba913
commit e4e31d9acf
@@ -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