feat: fixed up the changes
This commit is contained in:
parent
c79113921d
commit
cab04a068f
11 changed files with 62 additions and 47 deletions
|
@ -1,10 +0,0 @@
|
|||
-- No longer using the previous committee table
|
||||
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,
|
||||
committee text not null
|
||||
);
|
11
db/migrations/8_committee-mk-ii.sql
Normal file
11
db/migrations/8_committee-mk-ii.sql
Normal file
|
@ -0,0 +1,11 @@
|
|||
-- No longer using the previous committee table
|
||||
DROP TABLE committee;
|
||||
|
||||
-- new table pulling from teh api
|
||||
CREATE TABLE IF NOT EXISTS committees (
|
||||
id integer PRIMARY KEY,
|
||||
name_profile text not null,
|
||||
name_full text not null,
|
||||
link text not null,
|
||||
committee text not null
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue