mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
feat: system pronouns (#429)
This commit is contained in:
parent
062835e0c5
commit
7efe6f1f97
11 changed files with 99 additions and 2 deletions
7
PluralKit.Core/Database/Migrations/28.sql
Normal file
7
PluralKit.Core/Database/Migrations/28.sql
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-- schema version 28
|
||||
-- system pronouns
|
||||
|
||||
alter table systems add column pronouns text;
|
||||
alter table systems add column pronoun_privacy integer check (pronoun_privacy in (1, 2)) not null default 1;
|
||||
|
||||
update info set schema_version = 28;
|
||||
Loading…
Add table
Add a link
Reference in a new issue