summaryrefslogtreecommitdiffstats
path: root/create/postgresql/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'create/postgresql/schema.sql')
-rw-r--r--create/postgresql/schema.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index 6bd5fa95..ab44e29b 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -706,4 +706,16 @@ CREATE TABLE history_log (
CREATE INDEX history_log_i_c on history_str (itemid, clock);
+--
+-- Table structure for table 'autoreg'
+--
+
+CREATE TABLE autoreg (
+ id serial,
+ priority int4 DEFAULT '0' NOT NULL,
+ pattern varchar(255) DEFAULT '' NOT NULL,
+ hostid int4 DEFAULT '0' NOT NULL,
+ PRIMARY KEY (id)
+);
+
VACUUM ANALYZE;