From 4cbdcc6870d4e2da11e3a546b3a0d438c1207a0c Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 23 Jul 2019 19:32:48 -0500 Subject: [PATCH] Ignore the `HouseCoupon.virtual_only` field, for now not everyone supports that yet, apparently --- corepos/db/model.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/corepos/db/model.py b/corepos/db/model.py index 318ea45..67ac097 100644 --- a/corepos/db/model.py +++ b/corepos/db/model.py @@ -508,7 +508,8 @@ class HouseCoupon(Base): auto = sa.Column(sa.Boolean(), nullable=True, default=False) - virtual_only = sa.Column('virtualOnly', sa.Boolean(), nullable=True, default=False) + # TODO: this isn't yet supported in all production DBs + # virtual_only = sa.Column('virtualOnly', sa.Boolean(), nullable=True, default=False) def __str__(self): return self.description or ''