another schema fix

This commit is contained in:
Lili (Tlapka) 2022-10-12 15:48:18 +02:00
parent 4a3927a196
commit 5384076f64
1 changed files with 2 additions and 2 deletions

View File

@ -7,11 +7,11 @@ CREATE TABLE points (
points INTEGER
);
CREATE TABLE counters {
CREATE TABLE counters (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL
count INTEGER NOT NULL
};
);
CREATE TABLE redeem_queue (
id INTEGER PRIMARY KEY AUTOINCREMENT,