mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
10 lines
247 B
MySQL
10 lines
247 B
MySQL
|
-- 2023-08-16: Server-side user settings storage (for now, just whether specific notices are dismissed)
|
||
|
|
||
|
-- +migrate Up
|
||
|
|
||
|
alter table users add column settings jsonb not null default '{}';
|
||
|
|
||
|
-- +migrate Down
|
||
|
|
||
|
alter table users drop column settings;
|