2023-03-30 07:50:30 -07:00
|
|
|
-- 2023-03-30: Add token information to database
|
|
|
|
|
2023-08-15 18:30:34 -07:00
|
|
|
-- +migrate Up
|
|
|
|
|
2023-03-30 07:50:30 -07:00
|
|
|
alter table tokens add column api_only boolean not null default false;
|
|
|
|
alter table tokens add column read_only boolean not null default false;
|
2023-08-15 18:30:34 -07:00
|
|
|
|
|
|
|
-- +migrate Down
|
|
|
|
|
|
|
|
alter table tokens drop column api_only;
|
|
|
|
alter table tokens drop column read_only;
|