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.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index b7b936a7..bed6613e 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -787,4 +787,15 @@ CREATE TABLE mappings (
CREATE INDEX mappings_valuemapid on mappings (valuemapid);
+--
+-- Table structure for table 'housekeeper'
+--
+
+CREATE TABLE housekeeper (
+ housekeeperid serial,
+ tablename varchar(64) DEFAULT '' NOT NULL,
+ field varchar(64) DEFAULT '' NOT NULL,
+ PRIMARY KEY (housekeeperid)
+);
+
VACUUM ANALYZE;