Fix message if Exif already exists

This commit is contained in:
Isaac Connor 2015-09-17 15:16:05 -04:00
parent c0139e87ad
commit bfba16b87c
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ SET @s = (SELECT IF(
AND table_schema = DATABASE()
AND column_name = 'Exif'
) > 0,
"SELECT 'Column Options already exists in Monitors'",
"SELECT 'Column Exif already exists in Monitors'",
"ALTER TABLE `Monitors` ADD `Exif` tinyint(1) unsigned NOT NULL default '0' AFTER `WebColour`"
));