-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabase_setup.py
More file actions
81 lines (67 loc) · 2.65 KB
/
database_setup.py
File metadata and controls
81 lines (67 loc) · 2.65 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#This page has been over annotated in order to be used for future reference and re learning purposes
from sqlalchemy import Column, ForeignKey, Integer, String
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
from sqlalchemy import create_engine
#Import the base for the database classes
Base = declarative_base()
#New User DB table
class User(Base):
#Name the New Table
__tablename__ = 'user'
#Initiate table columns
#nullable = False prevents creation without a value
#primary_key = True sets the unique identifier for this table
name = Column(String(40), nullable = False)
email = Column(String(100), nullable = False)
picture = Column(String(250))
id = Column(Integer, primary_key = True)
#Serialize is how the data formats itself to be printed in JSON form
@property
def serialize(self):
"""JSON return of User class"""
return {
'name' : self.name,
'email' : self.email,
'picture' : self.picture,
'id' : self.integer,
}
class Category(Base):
__tablename__ = 'category'
id = Column(Integer, primary_key=True)
name = Column(String(250), nullable=False)
user_id = Column(Integer, ForeignKey(User.id))
item_relationship = relationship('Item', cascade ="all,delete", backref="category")
@property
def serialize(self):
"""Return object data in easily serializeable format"""
return {
'name' : self.name,
'id' : self.id,
'user_id' : self.user_id,
}
class Item(Base):
__tablename__ = 'item'
name = Column(String(80), nullable = False)
id = Column(Integer, primary_key = True)
description = Column(String(250))
price = Column(String(40))
picture = Column(String(250))
category_id = Column(Integer, ForeignKey('category.id', ondelete='CASCADE'))
user_id = Column(Integer, ForeignKey(User.id))
category_relationship = relationship(Category)
@property
def serialize(self):
"""Return object data in easily serializeable format"""
return {
'name' : self.name,
'description' : self.description,
'id' : self.id,
'price' : self.price,
'category' : self.category_id,
'picture' : self.picture,
'user_id' : self.user_id,
}
#Create the new database after running this file
#engine = create_engine('sqlite:////var/www/catalog/shoppingcatalog.db')
#Base.metadata.create_all(engine)