Fixed Syntax Error

This commit is contained in:
2025-11-03 00:24:42 +00:00
parent eea37b3df5
commit 16593e0281

View File

@@ -42,7 +42,7 @@ export class Event implements TEventEntity {
deleteDate: TEventEntity["deleteDate"]; deleteDate: TEventEntity["deleteDate"];
static createTable (db: Database): void { static createTable (db: Database): void {
const query = db.query(`CREATE TABLE IF NOT EXISTS "events" const query = db.query(`CREATE TABLE IF NOT EXISTS "events" (
"event_uid" INTEGER PRIMARY KEY, "event_uid" INTEGER PRIMARY KEY,
"uid" TEXT NOT NULL UNIQUE, "uid" TEXT NOT NULL UNIQUE,
"title" TEXT NOT NULL, "title" TEXT NOT NULL,