mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2025-02-12 23:03:37 +01:00
27 lines
918 B
SQL
27 lines
918 B
SQL
-- +migrate Up
|
|
|
|
-- 2023-03-19: Add moderation-related tables
|
|
|
|
alter table users add column is_admin boolean not null default false;
|
|
|
|
create table reports (
|
|
id serial primary key,
|
|
-- we keep deleted users for 180 days after deletion, so it's fine to tie this to a user object
|
|
user_id text not null references users (id) on delete cascade,
|
|
member_id text null references members (id) on delete set null,
|
|
reason text not null,
|
|
reporter_id text not null,
|
|
|
|
created_at timestamptz not null default now(),
|
|
resolved_at timestamptz,
|
|
admin_id text null references users (id) on delete set null,
|
|
admin_comment text
|
|
);
|
|
|
|
create table warnings (
|
|
id serial primary key,
|
|
user_id text not null references users (id) on delete cascade,
|
|
reason text not null,
|
|
created_at timestamptz not null default now(),
|
|
read_at timestamptz
|
|
);
|