feat: added the committee request from wolves

This commit is contained in:
silver 2024-10-28 12:49:35 +00:00
parent bd80bda22f
commit aff6299ac7
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D
4 changed files with 119 additions and 12 deletions

View file

@ -3,8 +3,8 @@ DROP TABLE committee;
-- new table pulling from teh api
CREATE TABLE IF NOT EXISTS committees (
id integer PRIMARY KEY,
name text not null,
link text not null,
members text not null
id integer PRIMARY KEY,
name text not null,
link text not null,
committee text not null
);