mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-01 23:48:53 +02:00
Specify schema file path
This commit is contained in:
parent
66c805de3e
commit
d217ec21d7
1 changed files with 4 additions and 3 deletions
|
@ -10,8 +10,8 @@
|
|||
"build": "dotenv -c -- turbo run build --filter=@rallly/web",
|
||||
"build:test": "turbo build:test",
|
||||
"docs:dev": "turbo dev --filter=@rallly/docs...",
|
||||
"db:deploy": "prisma migrate deploy --schema=./packages/database/prisma/schema.prisma",
|
||||
"db:generate": "prisma generate --schema=./packages/database/prisma/schema.prisma",
|
||||
"db:deploy": "prisma migrate deploy",
|
||||
"db:generate": "prisma generate",
|
||||
"db:migrate": "prisma migrate dev",
|
||||
"db:reset": "prisma migrate reset",
|
||||
"docker:up": "docker compose -f docker-compose.dev.yml up -d && wait-on --timeout 60000 tcp:localhost:5450",
|
||||
|
@ -28,7 +28,8 @@
|
|||
"release": "./scripts/create-release.sh"
|
||||
},
|
||||
"prisma": {
|
||||
"seed": "pnpm workspace @rallly/database db:seed"
|
||||
"seed": "pnpm workspace @rallly/database db:seed",
|
||||
"schema": "./packages/database/prisma/schema.prisma"
|
||||
},
|
||||
"dependencies": {
|
||||
"@prisma/client": "^5.20.0",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue