Subversion Repositories SmartDukaan

Rev

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

Rev 7256 Rev 7272
Line 188... Line 188...
188
    itemId = Field(Integer, primary_key=True)
188
    itemId = Field(Integer, primary_key=True)
189
    freebieItemId = Field(Integer)
189
    freebieItemId = Field(Integer)
190
    using_options(shortnames=True)
190
    using_options(shortnames=True)
191
    using_table_options(mysql_engine="InnoDB")
191
    using_table_options(mysql_engine="InnoDB")
192
 
192
 
-
 
193
class BrandInfo(Entity):
-
 
194
    name = Field(String(255), primary_key=True)
-
 
195
    serviceCenterLocatorUrl = Field(String(255))
-
 
196
    using_options(shortnames=True)
-
 
197
    using_table_options(mysql_engine="InnoDB")
-
 
198
    
193
class StorePricing(Entity):
199
class StorePricing(Entity):
194
    item = ManyToOne('Item', primary_key=True)
200
    item = ManyToOne('Item', primary_key=True)
195
    recommendedPrice = Field(Float)
201
    recommendedPrice = Field(Float)
196
    minPrice = Field(Float)
202
    minPrice = Field(Float)
197
    maxPrice = Field(Float)
203
    maxPrice = Field(Float)