X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2FSchema.pm;h=be46f24e3116ad39e2b706148e2d803038dff46d;hp=414891990a06ce918409f8e4db6fa6e2ab9ef60e;hb=4bc228b47ccbaa931df319d14f853a441e0de0c9;hpb=6dda95db961112c4a422ebe282b6dfc7935be40e diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index 414891990..be46f24e3 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -70,7 +70,7 @@ sub dbdef { $dbdef; } Returns the current canoical database definition as defined in this file. Optionally, pass a DBI data source to enable syntax specific to that database. -Currently, this enables "TYPE=InnoDB" for MySQL databases. +Currently, this enables "ENGINE=InnoDB" for MySQL databases. =cut @@ -79,7 +79,7 @@ sub dbdef_dist { my $local_options = ''; if ( $datasrc =~ /^dbi:mysql/i ) { - $local_options = 'TYPE=InnoDB'; + $local_options = 'ENGINE=InnoDB'; } ###