Back to Drizzle Orm

0.30.1

changelogs/drizzle-orm/0.30.1.md

0.45.2464 B
Original Source

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

Bug fixes

  • Migration hook fixed for Expo driver