pronounsfu/scripts/migrate/012_custom_options.sql

16 lines
433 B
MySQL
Raw Permalink Normal View History

-- 2023-04-01: Add a couple customization options to users and members
2023-08-15 18:30:34 -07:00
-- +migrate Up
alter table users add column member_title text;
alter table users add column list_private boolean not null default false;
alter table members add column unlisted boolean not null default false;
2023-08-15 18:30:34 -07:00
-- +migrate Down
alter table users drop column member_title;
alter table users drop column list_private;
alter table members drop column unlisted;