Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Khramtsov <ekhramtsov@process-one.net>2018-12-01 13:33:44 +0300
committerEvgeny Khramtsov <ekhramtsov@process-one.net>2018-12-01 13:33:44 +0300
commit109ed8f2f666a6a0911e8222db529e2d377aec2b (patch)
tree0aa8a15915513ac666ecca2b079a0ff897271555 /sql/pg.sql
parenta9539fef22133929bd189fe18e021f4c9f43cbb2 (diff)
Keep info about carbons inside session table
Accordingly, Mnesia/SQL/Riak table 'carboncopy' is not used anymore and can be safely removed. As a consequence, the commit deprecates the following options of mod_carboncopy: - ram_db_type - use_cache - cache_size - cache_missed - cache_life_time Fixes #2663
Diffstat (limited to 'sql/pg.sql')
-rw-r--r--sql/pg.sql10
1 files changed, 0 insertions, 10 deletions
diff --git a/sql/pg.sql b/sql/pg.sql
index a0cfe0ea6..ad1e4b9c2 100644
--- a/sql/pg.sql
+++ b/sql/pg.sql
@@ -377,16 +377,6 @@ CREATE TABLE bosh (
CREATE UNIQUE INDEX i_bosh_sid ON bosh USING btree (sid);
-CREATE TABLE carboncopy (
- username text NOT NULL,
- resource text NOT NULL,
- namespace text NOT NULL,
- node text NOT NULL
-);
-
-CREATE UNIQUE INDEX i_carboncopy_ur ON carboncopy USING btree (username, resource);
-CREATE INDEX i_carboncopy_user ON carboncopy USING btree (username);
-
CREATE TABLE proxy65 (
sid text NOT NULL,
pid_t text NOT NULL,