[flash-album-gallery] Add tinyint to smallint conversion

The flash-album-gallery plugin defines columns using the tinyint type
without a display width.  Convert this to smallint.

Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
This commit is contained in:
Kevin Locke
2015-06-03 00:54:39 -06:00
parent 50c091946c
commit 49e598f300

View File

@ -32,6 +32,9 @@
'tinyint(1)' => 'smallint',
"enum('0','1')" => 'smallint',
'COLLATE utf8_general_ci' => '',
// For flash-album-gallery plugin
'tinyint' => 'smallint',
);
function pg4wp_installing( $sql, &$logto)