From 46eb9b2e8086684d51217c6db62f97ce390d8658 Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Tue, 26 Jan 2016 11:24:27 -0500 Subject: [PATCH] Fixed bad fields in images table (featured, selected) --- setup/databaseScripts/create_database_V1.0.43.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.17.1