diff options
Diffstat (limited to 'src/odbc/pg.sql')
-rw-r--r-- | src/odbc/pg.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/odbc/pg.sql b/src/odbc/pg.sql index a7d88d3de..e78d3786b 100644 --- a/src/odbc/pg.sql +++ b/src/odbc/pg.sql @@ -274,3 +274,12 @@ CREATE TABLE motd ( xml text, created_at TIMESTAMP NOT NULL DEFAULT now() ); + +CREATE TABLE caps_features ( + node text NOT NULL, + subnode text NOT NULL, + feature text, + created_at TIMESTAMP NOT NULL DEFAULT now() +); + +CREATE INDEX i_caps_features_node_subnode ON caps_features USING btree (node, subnode); |