Ignore the HouseCoupon.virtual_only
field, for now
not everyone supports that yet, apparently
This commit is contained in:
parent
d2e764f388
commit
4cbdcc6870
|
@ -508,7 +508,8 @@ class HouseCoupon(Base):
|
||||||
|
|
||||||
auto = sa.Column(sa.Boolean(), nullable=True, default=False)
|
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):
|
def __str__(self):
|
||||||
return self.description or ''
|
return self.description or ''
|
||||||
|
|
Loading…
Reference in a new issue