Subversion Repositories SmartDukaan

Rev

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

Rev 1220 Rev 1225
Line 107... Line 107...
107
    type = Field(Integer)
107
    type = Field(Integer)
108
    time_set = Field(DateTime)
108
    time_set = Field(DateTime)
109
    comment = Field(String(100))
109
    comment = Field(String(100))
110
    time_unset = Field(DateTime)
110
    time_unset = Field(DateTime)
111
    using_options(shortnames=True)
111
    using_options(shortnames=True)
112
    using_table_options(mysql_engine="InnoDB")
-
 
113
112
    using_table_options(mysql_engine="InnoDB")
-
 
113
    
-
 
114
class BatchNoGenerator(Entity):
-
 
115
    id=Field(Integer, primary_key=True)
-
 
116
    using_options(shortnames=True)
-
 
117
    using_table_options(mysql_engine="InnoDB")
-
 
118