From 48ff48884b5ef7123c7bbed0975dc2ebda85cb17 Mon Sep 17 00:00:00 2001 From: Ross Trottier Date: Fri, 24 May 2024 20:04:26 -0600 Subject: [PATCH] create posts table if not exists --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index fc954a0..411b8a0 100644 --- a/main.go +++ b/main.go @@ -89,7 +89,7 @@ func connectToDatabases() { } createPostsResultsTableSQL := ` - create table PostResults( + create table if not exists PostResults( Id int primary key not null auto_increment, SlowtwitchId int not null, WordpressId int not null,