diff --git a/db/migrations/4_committee-mk-ii.sql b/db/migrations/4_committee-mk-ii.sql new file mode 100644 index 0000000..be59f61 --- /dev/null +++ b/db/migrations/4_committee-mk-ii.sql @@ -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 +);