payload
payload copied to clipboard
feat(db-sqlite): add `idType: 'uuid'` support
Adds idType: 'uuid'
to the SQLite adapter support:
sqliteAdapter({
idType: 'uuid',
})
Achieved through Drizzle's $defaultFn()
https://orm.drizzle.team/docs/latest-releases/drizzle-orm-v0283#-added-defaultfn--default-methods-to-column-builders as SQLite doesn't have native UUID support. Added sqlite-uuid
to CI.