forked from mystiq/dex
5 lines
141 B
MySQL
5 lines
141 B
MySQL
|
-- +migrate Up
|
||
|
ALTER TABLE refresh_token ADD COLUMN "scopes" text;
|
||
|
|
||
|
UPDATE refresh_token SET scopes = 'openid profile email offline_access';
|