feat: ajout du refresh token

This commit is contained in:
2021-02-14 11:10:58 +01:00
parent 089b5985f8
commit 7544643cfb
8 changed files with 46 additions and 13 deletions

View File

@@ -32,7 +32,9 @@ CREATE TABLE IF NOT EXISTS oauth
access_token TEXT,
token_type TEXT,
expires_in INTEGER,
refresh_token TEXT
refresh_token TEXT,
param_id INTEGER,
FOREIGN KEY(param_id) REFERENCES param(id)
)
`