61 lines
1.4 KiB
SQL
61 lines
1.4 KiB
SQL
--
|
|
-- This updates a 1.29.0 database to 1.29.1
|
|
--
|
|
|
|
SET @s = (SELECT IF(
|
|
(SELECT COUNT(*)
|
|
FROM INFORMATION_SCHEMA.TABLES
|
|
WHERE table_name = 'Storage'
|
|
AND table_schema = DATABASE()
|
|
) > 0,
|
|
"SELECT 'Storage table exists'",
|
|
"CREATE TABLE `Storage` (
|
|
`Id` smallint(5) unsigned NOT NULL auto_increment,
|
|
`Path` varchar(64) NOT NULL default '',
|
|
`Name` varchar(64) NOT NULL default '',
|
|
PRIMARY KEY (`Id`)
|
|
)"
|
|
));
|
|
|
|
PREPARE stmt FROM @s;
|
|
EXECUTE stmt;
|
|
|
|
--
|
|
-- Add StorageId column to Monitors
|
|
--
|
|
|
|
SET @s = (SELECT IF(
|
|
(SELECT COUNT(*)
|
|
FROM INFORMATION_SCHEMA.COLUMNS
|
|
WHERE table_name = 'Monitors'
|
|
AND table_schema = DATABASE()
|
|
AND column_name = 'StorageId'
|
|
) > 0,
|
|
"SELECT 'Column StorageId exists in Monitors'",
|
|
"ALTER TABLE Monitors ADD `StorageId` smallint(5) unsigned AFTER `ServerId`"
|
|
));
|
|
|
|
PREPARE stmt FROM @s;
|
|
EXECUTE stmt;
|
|
|
|
--
|
|
-- Add StorageId column to Eventss
|
|
--
|
|
|
|
SET @s = (SELECT IF(
|
|
(SELECT COUNT(*)
|
|
FROM INFORMATION_SCHEMA.COLUMNS
|
|
WHERE table_name = 'Events'
|
|
AND table_schema = DATABASE()
|
|
AND column_name = 'StorageId'
|
|
) > 0,
|
|
"SELECT 'Column StorageId exists in Events'",
|
|
"ALTER TABLE Events ADD `StorageId` smallint(5) unsigned NOT NULL default 0 AFTER `MonitorId`"
|
|
));
|
|
|
|
PREPARE stmt FROM @s;
|
|
EXECUTE stmt;
|
|
|
|
-- Increase the size of the Pid field for FreeBSD
|
|
ALTER TABLE Logs MODIFY Pid int(10);
|