Skip to content
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
 }
Clone this wiki locally