Skip to content

0.30.1

Compare
Choose a tag to compare
@github-actions github-actions released this 08 Mar 12:44
· 1153 commits to main since this release
bfc757f

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

Bug fixes

  • Migration hook fixed for Expo driver