pronounsfu/scripts/migrate/015_custom_preferences.sql

10 lines
201 B
MySQL
Raw Normal View History

-- 2023-04-19: Add custom preferences
2023-08-15 18:30:34 -07:00
-- +migrate Up
alter table users add column custom_preferences jsonb not null default '{}';
2023-08-15 18:30:34 -07:00
-- +migrate Down
alter table users drop column custom_preferences;