chore: downgrade Prisma to v6.19.3, remove redundant config files, and update schema datasource configurations
All checks were successful
Build and Push App / build (push) Successful in 17m49s

This commit is contained in:
streap2
2026-04-26 08:21:36 +02:00
parent d1e551bcca
commit 668b6bd8b8
9 changed files with 251 additions and 1511 deletions

764
admin/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,9 +9,9 @@
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {
"@prisma/adapter-pg": "^7.7.0", "@prisma/adapter-pg": "6.19.3",
"@prisma/client": "^7.7.0", "@prisma/client": "6.19.3",
"@prisma/config": "^7.7.0", "@prisma/config": "6.19.3",
"@types/bcryptjs": "^2.4.6", "@types/bcryptjs": "^2.4.6",
"afrohub": "file:..", "afrohub": "file:..",
"bcryptjs": "^3.0.3", "bcryptjs": "^3.0.3",
@@ -19,7 +19,7 @@
"lucide-react": "^1.8.0", "lucide-react": "^1.8.0",
"next": "16.2.3", "next": "16.2.3",
"pg": "^8.20.0", "pg": "^8.20.0",
"prisma": "^7.7.0", "prisma": "6.19.3",
"react": "19.2.4", "react": "19.2.4",
"react-dom": "19.2.4", "react-dom": "19.2.4",
"react-hot-toast": "^2.6.0", "react-hot-toast": "^2.6.0",

View File

@@ -1,14 +0,0 @@
import { config } from 'dotenv';
// Load .env then override with .env.local for Next.js compatibility
config();
config({ path: '.env.local', override: true });
/**
* Prisma 7 Configuration
*/
export default {
datasource: {
url: process.env.DATABASE_URL,
},
};

View File

@@ -5,6 +5,7 @@ generator client {
datasource db { datasource db {
provider = "postgresql" provider = "postgresql"
url = env("DATABASE_URL")
} }
model User { model User {

2
next-env.d.ts vendored
View File

@@ -1,6 +1,6 @@
/// <reference types="next" /> /// <reference types="next" />
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts"; import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited // NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

946
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -19,9 +19,9 @@
}, },
"dependencies": { "dependencies": {
"@google/genai": "^1.30.0", "@google/genai": "^1.30.0",
"@prisma/adapter-pg": "^7.6.0", "@prisma/adapter-pg": "6.19.3",
"@prisma/client": "^7.7.0", "@prisma/client": "6.19.3",
"@prisma/config": "^7.6.0", "@prisma/config": "6.19.3",
"@tailwindcss/postcss": "^4.2.2", "@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19", "@tailwindcss/typography": "^0.5.19",
"@types/bcryptjs": "^2.4.6", "@types/bcryptjs": "^2.4.6",
@@ -30,11 +30,12 @@
"autoprefixer": "^10.4.27", "autoprefixer": "^10.4.27",
"bcryptjs": "^3.0.3", "bcryptjs": "^3.0.3",
"dotenv": "^17.3.1", "dotenv": "^17.3.1",
"jiti": "^2.6.1",
"lucide-react": "^0.554.0", "lucide-react": "^0.554.0",
"next": "^16.1.6", "next": "^16.1.6",
"pg": "^8.19.0", "pg": "^8.19.0",
"postcss": "^8.5.10", "postcss": "^8.5.10",
"prisma": "^7.7.0", "prisma": "6.19.3",
"react": "^19.2.0", "react": "^19.2.0",
"react-dom": "^19.2.0", "react-dom": "^19.2.0",
"react-hot-toast": "^2.6.0", "react-hot-toast": "^2.6.0",

View File

@@ -1,17 +0,0 @@
import { config } from 'dotenv';
// Load .env then override with .env.local for Next.js compatibility
config();
config({ path: '.env.local', override: true });
/**
* Prisma 7 Configuration
*/
export default {
datasource: {
url: process.env.DATABASE_URL,
},
migrations: {
seed: 'npx tsx prisma/seed.ts',
},
};

View File

@@ -5,6 +5,7 @@ generator client {
datasource db { datasource db {
provider = "postgresql" provider = "postgresql"
url = env("DATABASE_URL")
} }
model User { model User {