Skip to content

Commit a146c04

Browse files
committed
Fix create table
1 parent 5554e82 commit a146c04

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ async function run(): Promise<void> {
4444
})
4545

4646
await db.run(`
47-
CREATE TABLE IF NOT EXISTS issues
47+
CREATE TABLE IF NOT EXISTS issues (
4848
id INTEGER PRIMARY KEY,
4949
timestamp TEXT NOT NULL,
5050
event TEXT NOT NULL
51-
`)
51+
);`)
5252
core.endGroup()
5353

5454
await db.close()

0 commit comments

Comments
 (0)