pgadmin4/web/pgadmin/setup/db_version.py

20 lines
500 B
Python
Raw Normal View History

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
2018-01-05 04:42:49 -06:00
# Copyright (C) 2013 - 2018, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
##########################################################################
from pgadmin.model import Version
def get_version():
try:
version = Version.query.filter_by(name='ConfigDB').first()
except Exception:
return -1
return version.value