2024-09-16 16:02:37 +00:00
|
|
|
-- No longer using the previous committee table
|
|
|
|
DROP TABLE committee;
|
|
|
|
|
|
|
|
-- new table pulling from teh api
|
2024-10-28 00:03:52 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS committees (
|
2024-09-16 16:02:37 +00:00
|
|
|
id integer PRIMARY KEY,
|
|
|
|
name text not null,
|
2024-10-28 00:03:52 +00:00
|
|
|
link text not null,
|
2024-09-16 16:02:37 +00:00
|
|
|
members text not null
|
|
|
|
);
|