データベース定義 - longthhust/dieto-website GitHub Wiki

User

カラム名 物理名 NULL 初期値 インデックス
ID id int Not null PK
名前 name varchar(256)
Eメール email varchar(256) Not null
パスワード password text Not null
年齢 age int
体長 height float
体重 weight float

User log

カラム名 物理名 NULL 初期値 インデックス
ID id int Not null PK
ユーザーID user_id int Not null FK
体重      weight float Not null
コメント comment text
登録日時 created_at timestamp Not null

User goal

カラム名 物理名 NULL 初期値 インデックス
ID id int Not null PK
ユーザーID user_id int Not null FK
体重      weight float Not null
コメント comment text
締め切り deadline date Not null
登録日時 created_at timestamp Not null