@rws-framework/db 3.12.0 → 3.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/db",
3
3
  "private": false,
4
- "version": "3.12.0",
4
+ "version": "3.12.1",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -445,8 +445,6 @@ datasource db {
445
445
  static async pushDBModels(configService: IDbConfigHandler, dbService: DBService, leaveFile = false): Promise<void> {
446
446
  process.env = { ...process.env, [this.dbUrlVarName]: configService.get('db_url') };
447
447
 
448
- console.log({ env: process.env.PRISMA_DB_URL });
449
-
450
448
  const [_, schemaPath] = DbUtils.getProcessedSchemaDir();
451
449
 
452
450
  const prismaPath = require.resolve('prisma/build/index.js');