@rws-framework/db 3.12.2 → 3.12.3

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.
@@ -365,7 +365,7 @@ datasource db {
365
365
  [this.dbUrlVarName]: configService.get('db_url')
366
366
  };
367
367
  // Execute prisma db push programmatically
368
- (0, child_process_1.execSync)(`node ${prismaPath} db push --schema=${schemaPath} --force-reset`, {
368
+ (0, child_process_1.execSync)(`node ${prismaPath} db push --schema=${schemaPath}`, {
369
369
  cwd: process.cwd(),
370
370
  stdio: 'inherit',
371
371
  env
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/db",
3
3
  "private": false,
4
- "version": "3.12.2",
4
+ "version": "3.12.3",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -475,7 +475,7 @@ datasource db {
475
475
  };
476
476
 
477
477
  // Execute prisma db push programmatically
478
- execSync(`node ${prismaPath} db push --schema=${schemaPath} --force-reset`, {
478
+ execSync(`node ${prismaPath} db push --schema=${schemaPath}`, {
479
479
  cwd: process.cwd(),
480
480
  stdio: 'inherit',
481
481
  env