sql: slight reordering of the migrations

This commit is contained in:
silver 2024-10-28 00:03:52 +00:00
parent b2d8238c17
commit ceade9b972
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -2,8 +2,9 @@
DROP TABLE committee;
-- new table pulling from teh api
CREATE TABLE IF NOT EXISTS committee (
CREATE TABLE IF NOT EXISTS committees (
id integer PRIMARY KEY,
name text not null,
link text not null,
members text not null
);