* changed keyword from "type" to "engine"

* changed from MyISAM to InnoDB
* fixed property "platform" from "oracle10g" to "mysql"
This commit is contained in:
Eduard von Feek
2013-08-23 18:35:57 +02:00
committed by Michael Minella
parent dbcc935894
commit 8a72d9ff9f
6 changed files with 21 additions and 20 deletions

View File

@@ -1,9 +1,9 @@
platform=oracle10g
platform=mysql
# SQL language oddities
BIGINT = BIGINT
IDENTITY =
GENERATED =
VOODOO = type=InnoDB
VOODOO = engine=InnoDB
IFEXISTSBEFORE = IF EXISTS
DOUBLE = DOUBLE PRECISION
DECIMAL = DECIMAL

View File

@@ -1,3 +1,3 @@
#macro (sequence $name $value)CREATE TABLE ${name} (ID BIGINT NOT NULL) type=MYISAM;
#macro (sequence $name $value)CREATE TABLE ${name} (ID BIGINT NOT NULL) engine=InnoDB;
INSERT INTO ${name} values(${value});
#end