Subversion Repositories SmartDukaan

Rev

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

Rev 19767 Rev 19777
Line 287... Line 287...
287
    created = Field(DateTime,default=func.now())
287
    created = Field(DateTime,default=func.now())
288
    using_options(shortnames=True)
288
    using_options(shortnames=True)
289
    using_table_options(mysql_engine="InnoDB")
289
    using_table_options(mysql_engine="InnoDB")
290
    
290
    
291
class Activation_Codes(Entity):
291
class Activation_Codes(Entity):
-
 
292
    status = Field(Boolean,default=True, server_default='1')
292
    code = Field(String(10))
293
    code = Field(String(10))
293
    created = Field(DateTime, default=func.now())
294
    created = Field(DateTime, default=func.now())
294
    using_options(shortnames=True)
295
    using_options(shortnames=True)
295
    using_table_options(mysql_engine="InnoDB")
296
    using_table_options(mysql_engine="InnoDB")
296
 
297