mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
7 lines
144 B
SQL
7 lines
144 B
SQL
CREATE TABLE oauth_token (
|
|
token text NOT NULL PRIMARY KEY,
|
|
jid text NOT NULL,
|
|
scope text NOT NULL,
|
|
"expire" bigint NOT NULL
|
|
);
|