clearer names for actions, and infer actions better
[monitor.git] / upgrade / monitor-server-3.0-21.sql
1 -- If there's an existing database, these commands will upgrade it to the
2 -- current version
3
4 -- ALTER TABLE historysiterecord ADD COLUMN message_last_reply timestamp without time zone DEFAULT NULL;
5 -- ALTER TABLE historysiterecord_history ADD COLUMN message_last_reply timestamp without time zone DEFAULT NULL;
6
7 ALTER TABLE historysiterecord ADD COLUMN penalty_pause boolean DEFAULT False;
8 ALTER TABLE historysiterecord_history ADD COLUMN penalty_pause boolean DEFAULT False;
9
10 ALTER TABLE historysiterecord ADD COLUMN penalty_pause_time timestamp without time zone DEFAULT NULL;
11 ALTER TABLE historysiterecord_history ADD COLUMN penalty_pause_time timestamp without time zone DEFAULT NULL;