-
Notifications
You must be signed in to change notification settings - Fork 9
Database Schema
Tran Le edited this page Jun 3, 2021
·
13 revisions
| column name | data type | details |
|---|---|---|
| id | int | not null, primary key |
| username | string | not null |
| string | not null | |
| hashed_password | string | not null |
| column name | data type | details |
|---|---|---|
| id | int | not null, primary key |
| product_name | string | not null |
| brand_name | string | not null |
| skincare_step | string | not null |
| target | string | |
| am_use | boolean | not null |
| pm_use | boolean | not null |
| description | text | not null |
| directions | text | |
| ingredients | text | |
| img_url | string | |
| user_id | int | not null |
-
user_idreferencesUserstable
| column name | data type | details |
|---|---|---|
| id | int | not null, primary key |
| img_url | string | |
| description | text | not null |
| rating | int | |
| am_products | text | |
| pm_products | text | |
| user_id | int | not null |
| created_at | date | not null |
-
user_idreferencesUserstable
| column name | data type | details |
|---|---|---|
| id | int | not null, primary key |
| routine_type | string | not null |
| user_id | int | not null |
-
user_idreferencesUserstable
| column name | data type | details |
|---|---|---|
| id | int | not null, primary key |
| routine_id | int | not null |
| product_id | int | not null |
-
routine_idreferencesRoutinestable -
product_idreferencesProductstable
| column name | data type | details |
|---|---|---|
| id | int | not null, primary key |
| product_id | int | not null |
| entry_id | int | not null |
-
product_idreferencesProductstable -
entry_idreferencesEntriestable
| column name | data type | details |
|---|---|---|
| id | int | not null, primary key |
| product_id | int | not null |
| entry_id | int | not null |
-
product_idreferencesProductstable -
entry_idreferencesEntriestable