Subversion Repositories SmartDukaan

Rev

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

Rev 1395 Rev 1422
Line 31... Line 31...
31
    providerId = Field(Integer)
31
    providerId = Field(Integer)
32
    using_options(shortnames=True)
32
    using_options(shortnames=True)
33
    using_table_options(mysql_engine="InnoDB")
33
    using_table_options(mysql_engine="InnoDB")
34
 
34
 
35
class UserEmail(Entity):
35
class UserEmail(Entity):
-
 
36
    id = Field(Integer, primary_key=True, autoincrement=True)
36
    emailTo = Field(String(100))
37
    emailTo = Field(String(100))
37
    emailFrom = Field(String(60))
38
    emailFrom = Field(String(60))
38
    subject = Field(String(120))
39
    subject = Field(String(120))
39
    body = Field(Text())
40
    body = Field(Text())
40
    source = Field(String(20))
41
    source = Field(String(20))