From 49e598f300ab3585351c0b5746d3374e9b78cc00 Mon Sep 17 00:00:00 2001 From: Kevin Locke Date: Wed, 3 Jun 2015 00:54:39 -0600 Subject: [PATCH] [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 --- pg4wp/driver_pgsql_install.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pg4wp/driver_pgsql_install.php b/pg4wp/driver_pgsql_install.php index 55ac875..695d353 100644 --- a/pg4wp/driver_pgsql_install.php +++ b/pg4wp/driver_pgsql_install.php @@ -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)