discord-bot/db/migrations/7_committee-mk-ii.sql

11 lines
270 B
MySQL
Raw Normal View History

-- 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,
members text not null
);