Skip to content

Commit

Permalink
Fix field access
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-dp committed Jun 26, 2024
1 parent 80c8a15 commit 362ed3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class ExtendedDMMFFieldBase
this.isId = field.isId
this.isReadOnly = field.isReadOnly
this.type = field.type
this.dbName = field.dbName
this.dbName = field['dbName']
this.isGenerated = field.isGenerated
this.isUpdatedAt = field.isUpdatedAt
this.hasDefaultValue = field.hasDefaultValue
Expand Down

0 comments on commit 362ed3a

Please sign in to comment.