This will allow me to mark when an oauth token fails and surface it to the user so that they can re-up on their auth token.
5 lines
160 B
SQL
5 lines
160 B
SQL
-- +goose Up
|
|
ALTER TABLE oauth_token ADD COLUMN invalidated_at timestamp without time zone;
|
|
|
|
-- +goose Down
|
|
ALTER TABLE oauth_token DROP COLUMN invalidated_at;
|