aboutsummaryrefslogtreecommitdiffstats
path: root/doc/res_config_sqlite.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/res_config_sqlite.txt')
-rw-r--r--doc/res_config_sqlite.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/res_config_sqlite.txt b/doc/res_config_sqlite.txt
index 9f1794429..39d31521a 100644
--- a/doc/res_config_sqlite.txt
+++ b/doc/res_config_sqlite.txt
@@ -15,6 +15,8 @@
*/
CREATE TABLE ast_config (
id INTEGER,
+ cat_metric INT(11) NOT NULL DEFAULT 0,
+ var_metric INT(11) NOT NULL DEFAULT 0,
commented TINYINT(1) NOT NULL DEFAULT 0,
filename VARCHAR(128) NOT NULL DEFAULT '',
category VARCHAR(128) NOT NULL DEFAULT 'default',
@@ -23,8 +25,9 @@ CREATE TABLE ast_config (
PRIMARY KEY (id)
);
+CREATE INDEX ast_config__idx__cat_metric ON ast_config(cat_metric);
+CREATE INDEX ast_config__idx__var_metric ON ast_config(var_metric);
CREATE INDEX ast_config__idx__filename_commented ON ast_config(filename, commented);
-CREATE INDEX ast_config__idx__category ON ast_config(category);
/*
* CDR table (this table is automatically created if non existent).