Minor Changes
-
#1461
8034db0
Thanks @juliusmarminge! - feat: add drizzleThis release adds a new option to use
drizzle-orm
as an alternative to Prisma.To make the different ORM options as similar as possible, some minor changes has also been made to the Prisma installer:
- a new script
db:push
has been added and is included in both ORM options. - the prisma client has been renamed to
db
in the trpc context - you now access your database client likeexamples: publicProcedure.query((opts) => { // prisma opts.ctx.db.example.findMany() // drizzle opts.ctx.db.query.example.findMany() }),
You cannot choose the two options in the same app.
- a new script
Patch Changes
- #1461
8034db0
Thanks @juliusmarminge! - refactor: swap inquirer for clack