Subversion Repositories SmartDukaan

Rev

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

Rev 9608 Rev 9627
Line 500... Line 500...
500
    using_options(shortnames=True)
500
    using_options(shortnames=True)
501
    using_table_options(mysql_engine="InnoDB")
501
    using_table_options(mysql_engine="InnoDB")
502
    
502
    
503
class  SnapdealOrder(Entity):
503
class  SnapdealOrder(Entity):
504
    orderId = Field(Integer, primary_key=True, autoincrement=False)
504
    orderId = Field(Integer, primary_key=True, autoincrement=False)
505
    subOrderId = Field(Integer)
505
    subOrderId = Field(String(32))
506
    referenceCode = Field(String(32))
506
    referenceCode = Field(String(32))
507
    snapdealTxnDate = Field(DateTime)
507
    snapdealTxnDate = Field(DateTime)
508
    productName = Field(String(128))
508
    productName = Field(String(128))
509
    listingPrice = Field(Float)
509
    listingPrice = Field(Float)
510
    maxNlc = Field(Float)
510
    maxNlc = Field(Float)