Replies: 1 comment 1 reply
-
Running into the same issue, did you find a fix? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
Hi,
I'm running ta Next.js 13 application with NextAuth.js email authentication without any problem until I replaced the column names from camelCase to snake_case like the following,
The following error is thrown in the console and it is complaining that column
emailVerified
is missing.The column has been renamed to
email_verified
in the database (or in the schema above). How can I configure the Drizzle adapter to reademail_verified
instead ofemailVerified
from the database?Additional information
No response
Example
No response
Beta Was this translation helpful? Give feedback.
All reactions