Created
May 18, 2018 18:30
-
-
Save jackjennings/7b949df0fffd2f8c4ed06c3a155da921 to your computer and use it in GitHub Desktop.
This file contains 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
Drink | |
* name:string | |
* has_many :steps | |
* has_many :ingredients | |
Ingredient | |
* has_one :measurement | |
* has_one :component | |
Component | |
* has_one :stock | |
* name:string | |
Step | |
* instruction:string | |
* index:number | |
Measurement | |
* belongs_to :ingredient | |
* amount:number | |
* unit:string | |
* volume:number | |
Stock | |
* belongs_to :ingredient | |
* quantity:number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment