Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowOnPaper committed Jan 26, 2024
1 parent a96f186 commit 047e830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/database/drizzle.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const userTable = sqliteTable("user", {
id: text("id").notNull().primaryKey()
});

const sessionTable = sqliteTable("user_session", {
const sessionTable = sqliteTable("session", {
id: text("id").notNull().primaryKey(),
userId: text("user_id")
.notNull()
Expand Down

0 comments on commit 047e830

Please sign in to comment.