Skip to content

Commit

Permalink
Fix generate migrations for SingleStore
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriiSherman committed Dec 4, 2024
1 parent 9cf0ed2 commit fc7f280
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelogs/drizzle-kit/0.29.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix SingleStore generate migrations command
2 changes: 1 addition & 1 deletion drizzle-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drizzle-kit",
"version": "0.29.0",
"version": "0.29.1",
"homepage": "https://orm.drizzle.team",
"keywords": [
"drizzle",
Expand Down
2 changes: 1 addition & 1 deletion drizzle-kit/src/cli/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const generate = command({
} else if (dialect === 'turso') {
await prepareAndMigrateLibSQL(opts);
} else if (dialect === 'singlestore') {
await prepareAndMigrateSqlite(opts);
await prepareAndMigrateSingleStore(opts);
} else {
assertUnreachable(dialect);
}
Expand Down

0 comments on commit fc7f280

Please sign in to comment.