Subversion Repositories SmartDukaan

Rev

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

Rev 8717 Rev 8921
Line 512... Line 512...
512
    ourPriceSnapshotDate  =  Field(DateTime)
512
    ourPriceSnapshotDate  =  Field(DateTime)
513
    salePriceSnapshotDate  = Field(DateTime)
513
    salePriceSnapshotDate  = Field(DateTime)
514
    minMfnPriceSnapshotDate = Field(DateTime)
514
    minMfnPriceSnapshotDate = Field(DateTime)
515
    minFbaPriceSnapshotDate = Field(DateTime)
515
    minFbaPriceSnapshotDate = Field(DateTime)
516
    using_options(shortnames=True)
516
    using_options(shortnames=True)
517
    using_table_options(mysql_engine="InnoDB")
-
 
518
517
    using_table_options(mysql_engine="InnoDB")
-
 
518
    
-
 
519
class SpiceTransactionHistory(Entity):
-
 
520
    orderId = Field(Integer, primary_key=True, autoincrement=False)
-
 
521
    spiceTID = Field(String(32))
-
 
522
    reponseCode = Field(String(32))
-
 
523
    rechargeTime = Field(DateTime)
-
 
524
    reconcilationTime = Field(DateTime)
-
 
525
519
526