Subversion Repositories SmartDukaan

Rev

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

Rev 10567 Rev 11173
Line 187... Line 187...
187
    using_table_options(mysql_engine="InnoDB")
187
    using_table_options(mysql_engine="InnoDB")
188
 
188
 
189
class AmazonFbaInventorySnapshot(Entity):
189
class AmazonFbaInventorySnapshot(Entity):
190
    item_id = Field(Integer, primary_key=True,autoincrement=False)
190
    item_id = Field(Integer, primary_key=True,autoincrement=False)
191
    availability = Field(Integer)
191
    availability = Field(Integer)
-
 
192
    inbound = Field(Integer)
-
 
193
    reserved = Field(Integer)
-
 
194
    unfulfillable = Field(Integer)
-
 
195
    location = Field(Integer,primary_key=True,autoincrement=False)
192
    using_options(shortnames=True)
196
    using_options(shortnames=True)
193
    using_table_options(mysql_engine="InnoDB")
197
    using_table_options(mysql_engine="InnoDB")
194
    
198
    
195
class SnapdealInventorySnapshot(Entity):
199
class SnapdealInventorySnapshot(Entity):
196
    item_id = Field(Integer, primary_key=True,autoincrement=False)
200
    item_id = Field(Integer, primary_key=True,autoincrement=False)