db: delete teh old table and recreate a new one with teh right fields

This commit is contained in:
silver 2024-09-16 17:02:37 +01:00
parent 04a487cd8f
commit fd32adb138
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -0,0 +1,9 @@
-- No longer using the previous committee table
DROP TABLE committee;
-- new table pulling from teh api
CREATE TABLE IF NOT EXISTS committee (
id integer PRIMARY KEY,
name text not null,
members text not null
);