nidus-sync/migrations/00009_add_oauth_invalidated.sql

6 lines
160 B
MySQL
Raw Normal View History

-- +goose Up
ALTER TABLE oauth_token ADD COLUMN invalidated_at timestamp without time zone;
-- +goose Down
ALTER TABLE oauth_token DROP COLUMN invalidated_at;