Extending Database with more tables #1745
-
How do I extend the database to have another table I'm creating groups of users and am trying to create a database that contains groups and another one that has list of users connected to a groups Feedback
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Is it possible to intercept the database user insert and add additional fields? I'm using Prisma2 and have additional columns and I need to populate these on sign up. |
Beta Was this translation helpful? Give feedback.
-
I was able to do this by switching to using Prisma instead of TypeORM which allowed me to define my DB schema. |
Beta Was this translation helpful? Give feedback.
I was able to do this by switching to using Prisma instead of TypeORM which allowed me to define my DB schema.