mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
11 lines
311 B
SQL
11 lines
311 B
SQL
-- 2023-03-30: Add token information to database
|
|
|
|
-- +migrate Up
|
|
|
|
alter table tokens add column api_only boolean not null default false;
|
|
alter table tokens add column read_only boolean not null default false;
|
|
|
|
-- +migrate Down
|
|
|
|
alter table tokens drop column api_only;
|
|
alter table tokens drop column read_only;
|