mirror of
https://github.com/processone/ejabberd
synced 2025-10-04 02:09:33 +02:00
8 lines
197 B
SQL
8 lines
197 B
SQL
CREATE TABLE oauth_token (
|
|
token text NOT NULL,
|
|
jid text NOT NULL,
|
|
scope text NOT NULL,
|
|
"expire" bigint NOT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX i_oauth_token_token ON oauth_token (token);
|