Subversion Repositories SmartDukaan

Rev

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

Rev 564 Rev 567
Line 89... Line 89...
89
    default_address_id = Field(Integer)
89
    default_address_id = Field(Integer)
90
    communication_email = Field(String(100))
90
    communication_email = Field(String(100))
91
    active_cart_id = Field(Integer)
91
    active_cart_id = Field(Integer)
92
    jsession_id = Field(String(64))
92
    jsession_id = Field(String(64))
93
    is_anonymous = Field(Boolean)
93
    is_anonymous = Field(Boolean)
94
    date_of_birth = Field(DateTime)
94
    date_of_birth = Field(String(20))
95
    sex = Field(Integer)
95
    sex = Field(Integer)
96
    phones = OneToMany("Phone")
96
    mobile_number = Field(String(20))
97
    addresses = OneToMany("Address")
97
    addresses = OneToMany("Address")
98
    social_handles = OneToMany("SocialHandle")
98
    social_handles = OneToMany("SocialHandle")
99
    using_options(shortnames=True)
99
    using_options(shortnames=True)
100
 
100
 
101
class Line(Entity):
101
class Line(Entity):