nidus-sync/migrations/00009_add_oauth_invalidated.sql
Eli Ribble a2e67e3d60
Add oauth token failure model and notification
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.
2025-11-11 20:10:56 +00:00

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;