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:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2017-05-17 19:29:19 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2017-05-17 19:29:19 +0300
commit6691c59a7ab2993f186f9b3309f440cd60ae3bcb (patch)
tree56cfb471966a3c02b63fe590898ef729b2c7a960 /sql/pg.sql
parent1391d5a3045e1a02e42d04e5e87d82cbd75d4a38 (diff)
Clean up database code related to mod_vcard_xupdate
Diffstat (limited to 'sql/pg.sql')
-rw-r--r--sql/pg.sql6
1 files changed, 0 insertions, 6 deletions
diff --git a/sql/pg.sql b/sql/pg.sql
index 539c1263a..f761e68da 100644
--- a/sql/pg.sql
+++ b/sql/pg.sql
@@ -120,12 +120,6 @@ CREATE TABLE vcard (
created_at TIMESTAMP NOT NULL DEFAULT now()
);
-CREATE TABLE vcard_xupdate (
- username text PRIMARY KEY,
- hash text NOT NULL,
- created_at TIMESTAMP NOT NULL DEFAULT now()
-);
-
CREATE TABLE vcard_search (
username text NOT NULL,
lusername text PRIMARY KEY,