We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d507b21 commit c342188Copy full SHA for c342188
server/controllers/postgresData.controller.js
@@ -37,8 +37,6 @@ function postgresDumpQuery(hostname, password, port, username, databaseName) {
37
*/
38
const writeSchema = async (command) => {
39
try {
40
- await exec(`psql --version`);
41
- await exec(`pg_dump --version`);
42
await exec(command[0])
43
const { stdout, stderr } = await exec(command[1]);
44
return stdout;
0 commit comments