2025-02-18 13:36:08 +00:00
|
|
|
-- 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,
|
2025-02-18 14:00:21 +00:00
|
|
|
name_plain text not null,
|
2025-02-18 13:36:08 +00:00
|
|
|
name_full text not null,
|
|
|
|
link text not null,
|
|
|
|
committee text not null
|
|
|
|
);
|
2025-02-18 21:14:05 +00:00
|
|
|
|
|
|
|
ALTER TABLE servers DROP COLUMN wolves_link;
|