From e325761a8fba6db99ef55d607b3768f0cbfb33ee Mon Sep 17 00:00:00 2001 From: AkiraFukushima Date: Thu, 11 May 2023 00:46:26 +0900 Subject: [PATCH] Fix creating hashtag tables --- src/main/database.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/database.ts b/src/main/database.ts index 5d25e8c8..8b872676 100644 --- a/src/main/database.ts +++ b/src/main/database.ts @@ -32,7 +32,7 @@ id INTEGER PRIMARY KEY, \ tag TEXT NOT NULL, \ account_id INTEGER UNIQUE NOT NULL, \ FOREIGN KEY (account_id) REFERENCES accounts(id) ON DELETE CASCADE)' - ).run + ).run() db.prepare( 'CREATE TABLE IF NOT EXISTS settings(\ id INTEGER PRIMARY KEY, \