summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/patch/config.sql
blob: 062f9eb29a6c01aac78d1c6807fd091489153438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CREATE TABLE config_tmp (
	configid		bigint unsigned		DEFAULT '0'	NOT NULL,
	alert_history		integer		DEFAULT '0'	NOT NULL,
	event_history		integer		DEFAULT '0'	NOT NULL,
	refresh_unsupported		integer		DEFAULT '0'	NOT NULL,
	work_period		varchar(100)		DEFAULT '1-5,00:00-24:00'	NOT NULL,
	PRIMARY KEY (configid)
);

insert into config_tmp select 1,alert_history,alarm_history,refresh_unsupported,work_period from config;
drop table config;
alter table config_tmp rename config;