Fix message if Exif already exists
This commit is contained in:
parent
c0139e87ad
commit
bfba16b87c
|
@ -9,7 +9,7 @@ SET @s = (SELECT IF(
|
||||||
AND table_schema = DATABASE()
|
AND table_schema = DATABASE()
|
||||||
AND column_name = 'Exif'
|
AND column_name = 'Exif'
|
||||||
) > 0,
|
) > 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`"
|
"ALTER TABLE `Monitors` ADD `Exif` tinyint(1) unsigned NOT NULL default '0' AFTER `WebColour`"
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue