From: Chuck Scott Date: Tue, 26 Jan 2016 16:24:27 +0000 (-0500) Subject: Fixed bad fields in images table (featured, selected) X-Git-Tag: v1.1.0^2~10 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=46eb9b2e8086684d51217c6db62f97ce390d8658;p=WP-Plugins%2Fglm-member-db.git Fixed bad fields in images table (featured, selected) --- diff --git a/setup/databaseScripts/create_database_V1.0.43.sql b/setup/databaseScripts/create_database_V1.0.43.sql index d9eb943f..23e3da2e 100644 --- a/setup/databaseScripts/create_database_V1.0.43.sql +++ b/setup/databaseScripts/create_database_V1.0.43.sql @@ -283,8 +283,8 @@ CREATE TABLE {prefix}images ( id INT NOT NULL AUTO_INCREMENT, name TINYTEXT NULL, -- Original name of the image - might be URL if copied via HTTP status TINYINT(1) NULL, -- Display/Use status - See plugin.ini status table - selected_image BOOLEAN NULL, -- A single special image in the current gallery for this entity - featured_image BOOLEAN null, -- Image is a member of a group of featured images + selected BOOLEAN NULL, -- A single special image in the current gallery for this entity + featured BOOLEAN null, -- Image is a member of a group of featured images file_name TINYTEXT NULL, -- Stored file name for the image descr TEXT NULL, -- Description caption TINYTEXT NULL, -- Caption for the image