This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| user_body_assembly_relations | |
| user_id:string | |
| weight:float | |
| bmi:float | |
| fat:float | |
| measurement_time:datetime | |
| rails g model UserBodyAssenmblyRealations user_id:string weight:float bmi:float fat:float measurement_time:datetime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| users | |
| user_id:string | |
| name:string | |
| height:float | |
| goal_weight:float (nullable) | |
| goal_bmi:float (nullable) | |
| goal_body_fat:float (nullable) | |
| rails g model User id:string name:string height:string goal_weight:float goal_bmi:float goal_body_fat:float |