schema/pgsql/upgrade_104.sql: related to last...

...commit

fixes #730
This commit is contained in:
Thomas Gelf 2017-01-19 10:36:58 +01:00
parent 402f0ed4b4
commit 17292e7680

View File

@ -1,3 +1,6 @@
DELETE FROM icinga_timeperiod_range
WHERE range_key IS NULL OR range_value IS NULL;
ALTER TABLE icinga_timeperiod_range
ADD COLUMN range_key character varying(255) NOT NULL,
ADD COLUMN range_value character varying(255) NOT NULL;