Skip to content

Commit e0565cc

Browse files
Merge pull request #545 from joshxfi/fix/turso-docs-typo
docs(turso): fix field name typo
2 parents 08a9d7a + ccd3085 commit e0565cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/tutorials/drizzle-with-db/drizzle-with-turso.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export const postsTable = sqliteTable('posts', {
126126
createdAt: text('created_at')
127127
.default(sql`(CURRENT_TIMESTAMP)`)
128128
.notNull(),
129-
updateAt: integer('updated_at', { mode: 'timestamp' }).$onUpdate(() => new Date()),
129+
updatedAt: integer('updated_at', { mode: 'timestamp' }).$onUpdate(() => new Date()),
130130
});
131131

132132
export type InsertUser = typeof usersTable.$inferInsert;

0 commit comments

Comments
 (0)