Implement support for contact persons and web users. Also show addr info for company.

This commit is contained in:
Marcus Lindvall 2019-09-09 17:13:10 +02:00
parent a23e88ff2f
commit fc7c1e13bc
2 changed files with 97 additions and 5 deletions

View file

@ -26,7 +26,8 @@ meta = MetaData()
try:
meta.reflect(bind=db.raw.connection(),
only=['ar', 'ars', 'xae', 'xare', 'fr', 'kus', 'x1k',
'oh', 'orp', 'lp', 'vg', 'xp', 'xm', 'prh', 'prl'])
'oh', 'orp', 'lp', 'vg', 'xp', 'xm', 'prh', 'prl',
'kp', 'kpw', 'cr', 'X4', 'xw'])
except OperationalError as e:
logger.error("Failed to read Jeeves DB structure")
raise e