create posts table if not exists

This commit is contained in:
Ross Trottier 2024-05-24 20:04:26 -06:00
parent e502692105
commit 48ff48884b

View File

@ -89,7 +89,7 @@ func connectToDatabases() {
} }
createPostsResultsTableSQL := ` createPostsResultsTableSQL := `
create table PostResults( create table if not exists PostResults(
Id int primary key not null auto_increment, Id int primary key not null auto_increment,
SlowtwitchId int not null, SlowtwitchId int not null,
WordpressId int not null, WordpressId int not null,