Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ejabberd_oauth.sql « mysql « sql - github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edf6bad4387c3da6634c1690cf2198a8c2ac9855 (plain)
1
2
3
4
5
6
CREATE TABLE oauth_token (
    token varchar(191) NOT NULL PRIMARY KEY,
    jid text NOT NULL,
    scope text NOT NULL,
    `expire` bigint NOT NULL
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;