File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,17 @@ model Account {
6464 @@map (" account " )
6565}
6666
67+ model Verification {
68+ id String @id @default (cuid () ) @map (" _id " )
69+ identifier String
70+ value String
71+ expiresAt DateTime
72+ createdAt DateTime @default (now () )
73+ updatedAt DateTime @updatedAt
74+
75+ @@map (" verification " )
76+ }
77+
6778model Func {
6879 id String @id @default (cuid () ) @map (" _id " )
6980 equation String
Original file line number Diff line number Diff line change @@ -22,6 +22,13 @@ export const auth = betterAuth({
2222 advanced : {
2323 cookiePrefix : "calcvis"
2424 } ,
25+ verification : {
26+ modelName : "verifications" ,
27+ fields : {
28+ identifier : "id"
29+ } ,
30+ disableCleanup : false
31+ } ,
2532 onAPIError : {
2633 throw : true ,
2734 onError : ( e ) => {
You can’t perform that action at this time.
0 commit comments