Skip to content

Commit 2fd896c

Browse files
d-csclaude
andauthored
fix(db:migrate): skip @internal/run-ops-database in local db:migrate (#4145)
`db:migrate` ran `prisma migrate deploy` for `@internal/run-ops-database`, which requires the dedicated run-ops DB (:5434) that isn't up in a default local — breaking local `db:migrate` for everyone; excluding it with `--filter=!@internal/run-ops-database` restores it. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent b272529 commit 2fd896c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"build": "turbo run build",
1212
"build:force": "turbo run build --force",
1313
"build:db:seed": "turbo run build:db:seed",
14-
"db:migrate": "turbo run db:migrate:deploy generate",
14+
"db:migrate": "turbo run db:migrate:deploy --filter=!@internal/run-ops-database && turbo run generate",
1515
"db:seed": "turbo run db:seed",
16-
"db:studio": "turbo run db:studio",
16+
"db:studio": "turbo run db:studio --filter=!@internal/run-ops-database",
1717
"db:populate": "turbo run db:populate",
1818
"dev": "turbo run dev",
1919
"i:dev": "infisical run -- turbo run dev",

0 commit comments

Comments
 (0)