9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
|
|
import { defineConfig } from 'prisma/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
schema: 'prisma/schema.prisma',
|
||
|
|
datasource: {
|
||
|
|
url: process.env.DATABASE_URL ?? 'postgresql://localhost:5432/sub2apipay',
|
||
|
|
},
|
||
|
|
});
|