feat: Implement Prisma PG adapter, refactor user and agent profiles in schema, and add database seeding.

This commit is contained in:
pradeepkumar
2025-12-19 01:15:19 +05:30
parent c1fcf32eb5
commit 1812fd3c98
8 changed files with 867 additions and 1143 deletions

View File

@@ -7,6 +7,7 @@ export default defineConfig({
schema: "prisma/schema.prisma",
migrations: {
path: "prisma/migrations",
seed: "npx ts-node prisma/seed.ts",
},
datasource: {
url: process.env["DATABASE_URL"],