mirror of
https://github.com/processone/ejabberd
synced 2025-10-05 19:42:11 +02:00
Reorganize SQL schema files
This commit is contained in:
parent
8a441b9cac
commit
e47475fff6
64 changed files with 2931 additions and 0 deletions
11
sql/sqlite/mod_proxy65.sql
Normal file
11
sql/sqlite/mod_proxy65.sql
Normal file
|
@ -0,0 +1,11 @@
|
|||
CREATE TABLE proxy65 (
|
||||
sid text NOT NULL,
|
||||
pid_t text NOT NULL,
|
||||
pid_i text NOT NULL,
|
||||
node_t text NOT NULL,
|
||||
node_i text NOT NULL,
|
||||
jid_i text NOT NULL
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX i_proxy65_sid ON proxy65 (sid);
|
||||
CREATE INDEX i_proxy65_jid ON proxy65 (jid_i);
|
Loading…
Add table
Add a link
Reference in a new issue