Subversion Repositories SmartDukaan

Rev

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

Rev 2004 Rev 2020
Line 101... Line 101...
101
    jsession_id = Field(String(64))
101
    jsession_id = Field(String(64))
102
    is_anonymous = Field(Boolean)
102
    is_anonymous = Field(Boolean)
103
    date_of_birth = Field(String(20))
103
    date_of_birth = Field(String(20))
104
    sex = Field(Integer)
104
    sex = Field(Integer)
105
    mobile_number = Field(String(20))
105
    mobile_number = Field(String(20))
-
 
106
    source = Field(String(200))
106
    addresses = OneToMany("Address")
107
    addresses = OneToMany("Address")
107
    social_handles = OneToMany("SocialHandle")
108
    social_handles = OneToMany("SocialHandle")
108
    using_options(shortnames=True)
109
    using_options(shortnames=True)
109
    using_table_options(mysql_engine="InnoDB")
110
    using_table_options(mysql_engine="InnoDB")
110
 
111