Comment 3 for bug 885426

Revision history for this message
Ziad Sawalha (ziad-sawalha) wrote :

Unfortunately, in sqlalchemy we have:

    enabled = Column(Integer)

for Users and Tenants, but

    enabled = Column(Boolean)
    is_global = Column(Boolean)

for EndpointTemplates.

We need to handle these differently and as Patrick points above, use the correct types.

Will also talk to the CI team about how we can get postgres testing included.