Subversion Repositories SmartDukaan

Rev

Rev 6726 | Rev 6751 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6726 Rev 6733
Line 186... Line 186...
186
    using_options(shortnames=True)
186
    using_options(shortnames=True)
187
    using_table_options(mysql_engine="InnoDB")
187
    using_table_options(mysql_engine="InnoDB")
188
 
188
 
189
class TransactionRequiringExtraProcessing(Entity):
189
class TransactionRequiringExtraProcessing(Entity):
190
    transaction_id = Field(Integer, primary_key=True, autoincrement=False)
190
    transaction_id = Field(Integer, primary_key=True, autoincrement=False)
191
    category = Field(Enum('COD_VERIFICATION', 'DELAYED_DELIVERY'), primary_key=True, autoincrement=False)
191
    category = Field(Enum('COD_VERIFICATION', 'DELAYED_DELIVERY', 'PAYMENT_FLAGGED', 'RECHARGE_UNKNOWN'), primary_key=True, autoincrement=False)
192
    using_options(shortnames=True)
192
    using_options(shortnames=True)
193
    using_table_options(mysql_engine="InnoDB")
193
    using_table_options(mysql_engine="InnoDB")
194
 
194
 
195
class OrderInventory(Entity):
195
class OrderInventory(Entity):
196
    order = ManyToOne("Order", primary_key=True)
196
    order = ManyToOne("Order", primary_key=True)