Subversion Repositories SmartDukaan

Rev

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

Rev 6498 Rev 6531
Line 17... Line 17...
17
    name = Field(String(50))
17
    name = Field(String(50))
18
    warehouses = OneToMany('Warehouse')
18
    warehouses = OneToMany('Warehouse')
19
    using_options(shortnames=True)
19
    using_options(shortnames=True)
20
    using_table_options(mysql_engine="InnoDB")
20
    using_table_options(mysql_engine="InnoDB")
21
    
21
    
22
class Ignoredinventoryupdateitems(Entity):
22
class IgnoredInventoryUpdateItems(Entity):
23
    warehouse_id = Field(Integer,primary_key=True,autoincrement=False)
23
    warehouse_id = Field(Integer,primary_key=True,autoincrement=False)
24
    item_id = Field(Integer,primary_key=True,autoincrement=False)
24
    item_id = Field(Integer,primary_key=True,autoincrement=False)
25
    using_options(shortnames=True)
25
    using_options(shortnames=True)
26
    using_table_options(mysql_engine="InnoDB")
26
    using_table_options(mysql_engine="InnoDB")
27
 
27