diff options
author | Steinar H. Gunderson <sgunderson@bigfoot.com> | 2014-04-06 18:00:29 +0200 |
---|---|---|
committer | Steinar H. Gunderson <sgunderson@bigfoot.com> | 2014-04-06 18:00:29 +0200 |
commit | 0804c84cbb43a56a021c4963e06c88b302a831a4 (patch) | |
tree | 3747715bbaf2a469551205ab494995cf0ce313cc | |
parent | f3bf94ee66e63b9049bd538acd06a4f7ebc357de (diff) |
Change default poll frequency to one minute.
-rw-r--r-- | sql/nms.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/nms.sql b/sql/nms.sql index 9b5ae01..d102798 100644 --- a/sql/nms.sql +++ b/sql/nms.sql @@ -544,7 +544,7 @@ CREATE TABLE switches ( last_updated timestamp with time zone, locked boolean DEFAULT false NOT NULL, priority integer DEFAULT 0 NOT NULL, - poll_frequency interval DEFAULT '00:05:00'::interval NOT NULL, + poll_frequency interval DEFAULT '00:01:00'::interval NOT NULL, community character varying DEFAULT 'public'::character varying NOT NULL ); |