DrizzleORM v0.30.1 release
  Mar 8, 2024 
 New Features
🎉 OP-SQLite driver Support
Usage Example
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
Fixes
- Migration hook fixed for Expo driver