mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
fc03d9c7f8
* build(deps): bump the e2e-prisma group Bumps the e2e-prisma group in /e2e/api/compile/prisma with 2 updates: [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) and [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli). Updates `@prisma/client` from 6.19.0 to 7.2.0 - [Release notes](https://github.com/prisma/prisma/releases) - [Commits](https://github.com/prisma/prisma/commits/7.2.0/packages/client) Updates `prisma` from 6.19.0 to 7.2.0 - [Release notes](https://github.com/prisma/prisma/releases) - [Commits](https://github.com/prisma/prisma/commits/7.2.0/packages/cli) --- updated-dependencies: - dependency-name: "@prisma/client" dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: e2e-prisma - dependency-name: prisma dependency-version: 7.2.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: e2e-prisma ... Signed-off-by: dependabot[bot] <support@github.com> * e2e/prisma: manual upgrade for prisma 7 Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stephan Renatus <stephan.renatus@gmail.com>
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
import 'dotenv/config'
|
|
import { defineConfig, env } from 'prisma/config'
|
|
|
|
export default defineConfig({
|
|
schema: 'prisma/schema.prisma',
|
|
migrations: {
|
|
path: 'prisma/migrations',
|
|
},
|
|
datasource: {
|
|
url: env('DATABASE_URL'),
|
|
},
|
|
}) |