Subversion Repositories SmartDukaan

Rev

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

Rev 2717 Rev 2815
Line 102... Line 102...
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
    source = Field(String(200))
-
 
107
    source_start_time = Field(DateTime)
107
    addresses = OneToMany("Address")
108
    addresses = OneToMany("Address")
108
    social_handles = OneToMany("SocialHandle")
109
    social_handles = OneToMany("SocialHandle")
109
    using_options(shortnames=True)
110
    using_options(shortnames=True)
110
    using_table_options(mysql_engine="InnoDB")
111
    using_table_options(mysql_engine="InnoDB")
111
 
112