style: fix prettier formatting in db migration

This commit is contained in:
Eyejoker
2026-03-25 21:54:27 +09:00
parent c3c75882e4
commit fad85ef027

View File

@@ -206,7 +206,9 @@ function createSchema(database: Database.Database): void {
} }
try { try {
database.exec(`ALTER TABLE scheduled_tasks ADD COLUMN max_duration_ms INTEGER`); database.exec(
`ALTER TABLE scheduled_tasks ADD COLUMN max_duration_ms INTEGER`,
);
} catch { } catch {
/* column already exists */ /* column already exists */
} }