mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that Utilities(Backup/Restore/Maintenence/Import-Export) should not be started
if binary path is wrong and also added 'Stop Process' button to cancel the process.
This commit is contained in:
@@ -29,7 +29,7 @@ from flask_sqlalchemy import SQLAlchemy
|
||||
#
|
||||
##########################################################################
|
||||
|
||||
SCHEMA_VERSION = 19
|
||||
SCHEMA_VERSION = 20
|
||||
|
||||
##########################################################################
|
||||
#
|
||||
@@ -258,6 +258,7 @@ class Process(db.Model):
|
||||
end_time = db.Column(db.String(), nullable=True)
|
||||
exit_code = db.Column(db.Integer(), nullable=True)
|
||||
acknowledge = db.Column(db.String(), nullable=True)
|
||||
utility_pid = db.Column(db.Integer, nullable=False)
|
||||
|
||||
|
||||
class Keys(db.Model):
|
||||
|
||||
Reference in New Issue
Block a user