Subversion Repositories SmartDukaan

Rev

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

Rev 3378 Rev 3499
Line 103... Line 103...
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
    source_start_time = Field(DateTime)
-
 
108
    trust_level = Field(Float)
108
    addresses = OneToMany("Address")
109
    addresses = OneToMany("Address")
109
    social_handles = OneToMany("SocialHandle")
110
    social_handles = OneToMany("SocialHandle")
110
    using_options(shortnames=True)
111
    using_options(shortnames=True)
111
    using_table_options(mysql_engine="InnoDB")
112
    using_table_options(mysql_engine="InnoDB")
112
 
113