db: delete teh old table and recreate a new one with teh right fields
This commit is contained in:
parent
04a487cd8f
commit
fd32adb138
1 changed files with 9 additions and 0 deletions
9
db/migrations/4_committee-mk-ii.sql
Normal file
9
db/migrations/4_committee-mk-ii.sql
Normal 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
|
||||||
|
);
|
Loading…
Reference in a new issue