summaryrefslogtreecommitdiffstats
path: root/create/postgresql/schema.sql
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-04-28 10:03:56 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-04-28 10:03:56 +0000
commit55d8804ff83518a46e6742ebd0ba6e0fa6df2d8b (patch)
tree497b1375f551fd74294265a401b95a2c093d297b /create/postgresql/schema.sql
parent55963f6c918d2503019875cac9307091b908eaaa (diff)
downloadzabbix-55d8804ff83518a46e6742ebd0ba6e0fa6df2d8b.tar.gz
zabbix-55d8804ff83518a46e6742ebd0ba6e0fa6df2d8b.tar.xz
zabbix-55d8804ff83518a46e6742ebd0ba6e0fa6df2d8b.zip
- improved graphs, added 'Working time' displaying (Eugene)
- added 'Working time' configuration (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@2786 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create/postgresql/schema.sql')
-rw-r--r--create/postgresql/schema.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index f642aa3b..a5152155 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -101,6 +101,7 @@ CREATE TABLE config (
alert_history int4 DEFAULT '0' NOT NULL,
alarm_history int4 DEFAULT '0' NOT NULL,
refresh_unsupported int4 DEFAULT '0' NOT NULL
+ period varchar(100) DEFAULT '1-7,00:00-23:59' NOT NULL,
);
--
@@ -486,6 +487,7 @@ CREATE TABLE graphs (
yaxismin float8 DEFAULT '0' NOT NULL,
yaxismax float8 DEFAULT '0' NOT NULL,
templateid int4 DEFAULT '0' NOT NULL,
+ show_work_period int2 DEFAULT '1' NOT NULL,
PRIMARY KEY (graphid),
UNIQUE (name)
);