Subversion Repositories SmartDukaan

Rev

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

Rev 1422 Rev 1610
Line 30... Line 30...
30
    password = Field(String(30))
30
    password = Field(String(30))
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 StatisticsUser(Entity):
-
 
36
    username = Field(String(30), primary_key=True)
-
 
37
    password = Field(String(30))
-
 
38
    using_options(shortnames=True)
-
 
39
    using_table_options(mysql_engine="InnoDB")
-
 
40
 
35
class UserEmail(Entity):
41
class UserEmail(Entity):
36
    id = Field(Integer, primary_key=True, autoincrement=True)
42
    id = Field(Integer, primary_key=True, autoincrement=True)
37
    emailTo = Field(String(100))
43
    emailTo = Field(String(100))
38
    emailFrom = Field(String(60))
44
    emailFrom = Field(String(60))
39
    subject = Field(String(120))
45
    subject = Field(String(120))