Subversion Repositories SmartDukaan

Rev

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

Rev 19691 Rev 19714
Line 808... Line 808...
808
    price = Field(Float)
808
    price = Field(Float)
809
    using_options(shortnames=True)
809
    using_options(shortnames=True)
810
    using_table_options(mysql_engine="InnoDB")
810
    using_table_options(mysql_engine="InnoDB")
811
    
811
    
812
class ItemWarrantyInfo(Entity):
812
class ItemWarrantyInfo(Entity):
813
    itemId = Field(Integer, primary_key=True,  autoincrement=False)
813
    catalogItemId = Field(Integer, primary_key=True,  autoincrement=False)
814
    itemCondition = Field(Integer, primary_key=True, autoincrement=False)
814
    itemCondition = Field(Integer, primary_key=True, autoincrement=False)
815
    warrantyVal = Field(Integer)
815
    warrantyVal = Field(Integer)
816
    warrantyPeriodType = Field(String(1))  
816
    warrantyPeriodType = Field(String(1))  
817
    using_options(shortnames=True)
817
    using_options(shortnames=True)
818
    using_table_options(mysql_engine="InnoDB")
818
    using_table_options(mysql_engine="InnoDB")