Created
August 8, 2012 06:49
-
-
Save pzaich/3292886 to your computer and use it in GitHub Desktop.
one-to-one-relationship
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
| create_table "locations", :force => true do |t| | |
| t.integer "shelf_life_id" | |
| t.datetime "created_at", :null => false | |
| t.datetime "updated_at", :null => false | |
| t.string "name" | |
| end | |
| create_table "shelf_lives", :force => true do |t| | |
| t.integer "item_kind_id" | |
| t.integer "duration" | |
| t.datetime "created_at", :null => false | |
| t.datetime "updated_at", :null => false | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment