orchid-orm 1.68.1 → 1.68.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1845,7 +1845,7 @@ const verifyMigration = async (adapter, config, migrationCode, generateMigration
1845
1845
  const migrationFn = new Function("change", migrationCode);
1846
1846
  let code;
1847
1847
  try {
1848
- await adapter.transaction(async (trx) => {
1848
+ await adapter.transaction(void 0, void 0, async (trx) => {
1849
1849
  const changeFns = [];
1850
1850
  migrationFn((changeCb) => {
1851
1851
  changeFns.push(changeCb);