18 lines
524 B
Markdown
18 lines
524 B
Markdown
### Bug fixed
|
|
|
|
- 🛠️ Fixed RQB behavior for tables with same names in different schemas
|
|
- 🛠️ Fixed [BUG]: Mismatched type hints when using RDS Data API - #2097
|
|
|
|
### New Prisma-Drizzle extension
|
|
|
|
```ts
|
|
import { PrismaClient } from '@prisma/client';
|
|
import { drizzle } from 'drizzle-orm/prisma/pg';
|
|
import { User } from './drizzle';
|
|
|
|
const prisma = new PrismaClient().$extends(drizzle());
|
|
const users = await prisma.$drizzle.select().from(User);
|
|
```
|
|
|
|
For more info, check docs: https://orm.drizzle.team/docs/prisma
|