From ceade9b97261f6f7d7f0892918996dfeb4b9caeb Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Mon, 28 Oct 2024 00:03:52 +0000 Subject: [PATCH] sql: slight reordering of the migrations --- db/migrations/{4_committee-mk-ii.sql => 7_committee-mk-ii.sql} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename db/migrations/{4_committee-mk-ii.sql => 7_committee-mk-ii.sql} (74%) diff --git a/db/migrations/4_committee-mk-ii.sql b/db/migrations/7_committee-mk-ii.sql similarity index 74% rename from db/migrations/4_committee-mk-ii.sql rename to db/migrations/7_committee-mk-ii.sql index be59f61..2ddf316 100644 --- a/db/migrations/4_committee-mk-ii.sql +++ b/db/migrations/7_committee-mk-ii.sql @@ -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 );