forked from Skynet/discord-bot
12 lines
340 B
MySQL
12 lines
340 B
MySQL
|
-- 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
|
||
|
);
|