mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
8 lines
283 B
SQL
8 lines
283 B
SQL
-- +migrate Up
|
|
|
|
-- 2023-04-01: Add a couple customization options to users and members
|
|
|
|
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;
|