Subversion Repositories SmartDukaan

Rev

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

Rev 7251 Rev 7263
Line 391... Line 391...
391
    addedAt = Field(DateTime)
391
    addedAt = Field(DateTime)
392
    pushedAt = Field(DateTime)
392
    pushedAt = Field(DateTime)
393
    pushedToOcr = Field(Boolean)
393
    pushedToOcr = Field(Boolean)
394
    using_options(shortnames=True)
394
    using_options(shortnames=True)
395
    using_table_options(mysql_engine="InnoDB")
395
    using_table_options(mysql_engine="InnoDB")
-
 
396
    
-
 
397
class SourceDetail(Entity):
-
 
398
    id = Field(Integer, primary_key=True, autoincrement=False)
-
 
399
    name = Field(String(255))
-
 
400
    email = Field(String(255))
-
 
401
    using_options(shortnames=True)
-
 
402
    using_table_options(mysql_engine="InnoDB")
396
403