Skip to content

Commit 3049f67

Browse files
committed
Fixed build issues
1 parent 43e1de1 commit 3049f67

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

drizzle-orm/src/libsql/migrator.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,6 @@ export async function migrate<TSchema extends Record<string, unknown>, TRelation
6565
}
6666

6767
await db.session.migrate(statementToBatch);
68+
69+
return;
6870
}

drizzle-orm/src/pg-proxy/migrator.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,6 @@ export async function migrate<
8282
}
8383

8484
await callback(queriesToRun);
85+
86+
return;
8587
}

drizzle-orm/src/singlestore-proxy/migrator.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,6 @@ export async function migrate<TSchema extends Record<string, unknown>, TRelation
7474
}
7575

7676
await callback(queriesToRun);
77+
78+
return;
7779
}

drizzle-orm/src/sqlite-proxy/migrator.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,6 @@ export async function migrate<TSchema extends Record<string, unknown>, TRelation
7676
}
7777

7878
await callback(queriesToRun);
79+
80+
return;
7981
}

0 commit comments

Comments
 (0)