Subversion Repositories SmartDukaan

Rev

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

Rev 23806 Rev 24111
Line 876... Line 876...
876
    using_options(shortnames=True)
876
    using_options(shortnames=True)
877
    using_table_options(mysql_engine="InnoDB")
877
    using_table_options(mysql_engine="InnoDB")
878
    
878
    
879
class Tag_Ranking(Entity):
879
class Tag_Ranking(Entity):
880
    catalogItemId = Field(Integer)
880
    catalogItemId = Field(Integer)
881
    rankPoints = Field(Integer)          
881
    rankPoints = Field(Integer)
-
 
882
    feature = Field(String(512))          
882
    using_options(shortnames=True)
883
    using_options(shortnames=True)
883
    using_table_options(mysql_engine="InnoDB")
884
    using_table_options(mysql_engine="InnoDB")
884
 
885
 
885
    
886
    
886
    
887