Subversion Repositories SmartDukaan

Rev

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

Rev 21838 Rev 21853
Line 81... Line 81...
81
    using_table_options(mysql_engine="InnoDB")
81
    using_table_options(mysql_engine="InnoDB")
82
    
82
    
83
class CategoryHsnCodes(Entity):
83
class CategoryHsnCodes(Entity):
84
    categoryId = Field(Integer, primary_key=True)
84
    categoryId = Field(Integer, primary_key=True)
85
    hsnCode = Field(String(12), primary_key=True)
85
    hsnCode = Field(String(12), primary_key=True)
-
 
86
    description = Field(String(64))
86
    using_options(shortnames=True)
87
    using_options(shortnames=True)
87
    using_table_options(mysql_engine="InnoDB")
88
    using_table_options(mysql_engine="InnoDB")
88
    
89
    
89
 
90
 
90
 
91