feat: add functionality for the committee server.

Related to #16
This commit is contained in:
silver 2024-08-31 16:05:38 +01:00
parent 905aaa9620
commit 7e40b862d3
Signed by untrusted user: silver
GPG key ID: 36F93D61BAD3FD7D
3 changed files with 314 additions and 0 deletions

View file

@ -0,0 +1,7 @@
-- temp table to allow folks to verify by committee email.
CREATE TABLE IF NOT EXISTS committee (
discord integer PRIMARY KEY,
email text not null,
auth_code text not null,
committee integer DEFAULT 0,
);