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
parent
7c1f6ba913
commit
e4e31d9acf
|
@ -1,5 +1,7 @@
|
||||||
:VERSION 1
|
:VERSION 1
|
||||||
|
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
CREATE TABLE `regions` (
|
CREATE TABLE `regions` (
|
||||||
`uuid` varchar(36) NOT NULL,
|
`uuid` varchar(36) NOT NULL,
|
||||||
`regionHandle` bigint(20) unsigned NOT NULL,
|
`regionHandle` bigint(20) unsigned NOT NULL,
|
||||||
|
@ -31,7 +33,9 @@ CREATE TABLE `regions` (
|
||||||
KEY `regionName` (`regionName`),
|
KEY `regionName` (`regionName`),
|
||||||
KEY `regionHandle` (`regionHandle`),
|
KEY `regionHandle` (`regionHandle`),
|
||||||
KEY `overrideHandles` (`eastOverrideHandle`,`westOverrideHandle`,`southOverrideHandle`,`northOverrideHandle`)
|
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
|
:VERSION 2
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue