diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2025-02-23 17:01:01 -0800 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2025-02-23 17:01:01 -0800 |
commit | d347e8286bae38b3949f6e0f58d8ab8632cd9c0e (patch) | |
tree | 92975f797793f7a1da379cd6274da23cea29bc4a /schema/mysql.sql | |
parent | 8ecaed3d2f5a19bf1a5c4cb077658e1bd3bc8438 (diff) |
Track token expirationreauthorize
Force reauthentication after the token expires.
Diffstat (limited to 'schema/mysql.sql')
-rw-r--r-- | schema/mysql.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/mysql.sql b/schema/mysql.sql index d6210d9..63b8346 100644 --- a/schema/mysql.sql +++ b/schema/mysql.sql @@ -6,6 +6,7 @@ CREATE TABLE `users` ( `micropub_endpoint` varchar(255) DEFAULT NULL, `micropub_media_endpoint` varchar(255) DEFAULT NULL, `micropub_access_token` text, + `micropub_token_expiration` datetime DEFAULT NULL, `micropub_scope` varchar(255) DEFAULT NULL, `micropub_response` text, `micropub_slug_field` varchar(255) NOT NULL DEFAULT 'mp-slug', |