mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 17:59:31 +02:00
6 lines
144 B
SQL
6 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
|
|
);
|