Skip to content

Commit

Permalink
fix(database/sqlite): fix typo in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewhrit committed Nov 19, 2024
1 parent c62343c commit 5175ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/database/database_sqlite.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ CREATE TABLE IF NOT EXISTS documents (
id TEXT PRIMARY KEY,
content TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
usdated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE IF NOT EXISTS accounts (
Expand Down

0 comments on commit 5175ffe

Please sign in to comment.