18 lines
402 B
SQL
18 lines
402 B
SQL
--
|
|
-- Rename Snapshot_Events to Snapshots_Events
|
|
--
|
|
|
|
SELECT 'Checking for Snapshot_Events table';
|
|
SET @s = (SELECT IF(
|
|
(SELECT COUNT(*)
|
|
FROM INFORMATION_SCHEMA.COLUMNS
|
|
WHERE table_name = 'Snapshot_Events'
|
|
AND table_schema = DATABASE()
|
|
) > 0,
|
|
"ALTER TABLE `Snapshot_Events` RENAME TO `Snapshots_Events`",
|
|
"SELECT 'Snapshot_Events doesnt exist, good.'"
|
|
));
|
|
|
|
PREPARE stmt FROM @s;
|
|
EXECUTE stmt;
|