24 lines
465 B
Markdown
24 lines
465 B
Markdown
## New Features
|
|
|
|
### 🎉 OP-SQLite driver Support
|
|
|
|
Usage Example
|
|
|
|
```ts
|
|
import { open } from '@op-engineering/op-sqlite';
|
|
import { drizzle } from 'drizzle-orm/op-sqlite';
|
|
|
|
const opsqlite = open({
|
|
name: 'myDB',
|
|
});
|
|
const db = drizzle(opsqlite);
|
|
|
|
await db.select().from(users);
|
|
```
|
|
|
|
For more usage and setup details, please check our [op-sqlite docs](http://orm.drizzle.team/docs/get-started-sqlite#op-sqlite)
|
|
|
|
### Bug fixes
|
|
|
|
- Migration hook fixed for Expo driver
|