Changeset - 4cbdcc6870d4
[Not reviewed]
0 1 0
Lance Edgar - 5 years ago 2019-07-23 19:32:48
ledgar@techsupport.coop
Ignore the `HouseCoupon.virtual_only` field, for now

not everyone supports that yet, apparently
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general) First comment
corepos/db/model.py
Show inline comments
 
@@ -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 ''
0 comments (0 inline, 0 general) First comment
You need to be logged in to comment. Login now