-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.py
49 lines (36 loc) · 1.43 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from sqlalchemy import Boolean, Column, Integer, String, ForeignKey
from sqlalchemy.orm import relationship
from database import Base
class Users(Base):
__tablename__ = 'users'
id = Column(Integer, primary_key=True, index=True)
email = Column(String, unique=True, index=True)
username = Column(String, unique=True, index=True)
first_name = Column(String)
last_name = Column(String)
hashed_password = Column(String)
is_active = Column(Boolean, default=True)
phone_number = Column(String)
address_id = Column(Integer, ForeignKey('address.id'), nullable=True)
todos = relationship("Todos", back_populates="owner")
address = relationship('Address', back_populates="user_address")
class Todos(Base):
__tablename__ = "todos"
id = Column(Integer, primary_key=True, index=True)
title = Column(String)
description = Column(String)
priority = Column(Integer)
complete = Column(Boolean, default=False)
owner_id = Column(Integer, ForeignKey('users.id'))
owner = relationship("Users", back_populates='todos')
class Address(Base):
__tablename__ = 'address'
id = Column(Integer, primary_key=True, index=True)
address1 = Column(String)
address2 = Column(String)
city = Column(String)
state = Column(String)
country = Column(String)
postal_code = Column(String)
apt_num = Column(Integer)
user_address = relationship("Users", back_populates="address")