mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
9 lines
201 B
SQL
9 lines
201 B
SQL
-- 2023-04-19: Add custom preferences
|
|
|
|
-- +migrate Up
|
|
|
|
alter table users add column custom_preferences jsonb not null default '{}';
|
|
|
|
-- +migrate Down
|
|
|
|
alter table users drop column custom_preferences;
|