@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}
|
|
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
|
@@ -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}
|
|
478
|
+
execSync(`node ${prismaPath} db push --schema=${schemaPath}`, {
|
|
479
479
|
cwd: process.cwd(),
|
|
480
480
|
stdio: 'inherit',
|
|
481
481
|
env
|