From f391a7bd12d07dd1b7a0fc8d9d7838930d51c787 Mon Sep 17 00:00:00 2001 From: Lili Date: Thu, 13 Oct 2022 14:24:36 +0200 Subject: [PATCH] create points table if not exists --- tlapbot/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tlapbot/schema.sql b/tlapbot/schema.sql index bbbfdcd..681cc70 100644 --- a/tlapbot/schema.sql +++ b/tlapbot/schema.sql @@ -1,7 +1,7 @@ DROP TABLE IF EXISTS counters; DROP TABLE IF EXISTS redeem_queue; -CREATE TABLE points ( +CREATE TABLE IF NOT EXISTS points ( id TEXT PRIMARY KEY, name TEXT, points INTEGER