-
Notifications
You must be signed in to change notification settings - Fork 1
Schema
YG edited this page Dec 29, 2020
·
6 revisions
Table Users {
id int [pk, increment] // auto-increment
username string
email string
password string
mobile string
createdAt date
updatedAt date
}
Table Items {
id int [pk, increment]
name string
category string
part string
modifiedAt string
expiredAfter int
createdAt date
updatedAt date
fk_userid int
}
Table Recipes {
id int [pk, increment]
name string
thumbnail string
url string
}