10 lines
239 B
MySQL
10 lines
239 B
MySQL
|
-- 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
|
||
|
);
|