mirror of
https://github.com/PostgreSQL-For-Wordpress/postgresql-for-wordpress.git
synced 2025-07-30 01:37:13 +02:00
[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:
@ -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)
|
||||
|
Reference in New Issue
Block a user