We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drizzle-orm
0.38.3
drizzle-kit
0.30.1
No response
whe incrementing a value, like in the docs described
await db.execute( .update(facilities) .set({ detailviews: sql`${facilities.detailviews} + 1` }) .where(eq(facilities.slug, slug)) }
following error is thrown: TypeError value.toISOString is not a function
schema:
export const facilities = createTable('facility', { id: text() .primaryKey() .$defaultFn(() => crypto.randomUUID()), slug: text().unique().notNull(), searchviews: integer().default(0).notNull(), detailviews: integer().default(0).notNull(), })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Report hasn't been filed before.
What version of
drizzle-orm
are you using?0.38.3
What version of
drizzle-kit
are you using?0.30.1
Other packages
No response
Describe the Bug
whe incrementing a value, like in the docs described
following error is thrown:
TypeError
value.toISOString is not a function
schema:
The text was updated successfully, but these errors were encountered: