idType: 'uuid'
Adds `idType: 'uuid'` to the SQLite adapter support: ```ts 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.
Adds option `ensureIndexes` to Mongoose adapter, which will ensure indexes are ready prior to completing connection.