orchid-orm 1.68.2 → 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.
@@ -1868,7 +1868,7 @@ const verifyMigration = async (adapter, config, migrationCode, generateMigration
1868
1868
  const migrationFn = new Function("change", migrationCode);
1869
1869
  let code;
1870
1870
  try {
1871
- await adapter.transaction(async (trx) => {
1871
+ await adapter.transaction(void 0, void 0, async (trx) => {
1872
1872
  const changeFns = [];
1873
1873
  migrationFn((changeCb) => {
1874
1874
  changeFns.push(changeCb);