Last active
August 29, 2015 14:24
-
-
Save aaronmoodie/f1f8b2e41507d2a743d9 to your computer and use it in GitHub Desktop.
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 "product", :force => true do |t| | |
t.string "name" | |
t.enum "type" # booklet, tutorial etc | |
end | |
create_table "physical_product", :force => true do |t| | |
t.integer "product_id" | |
# unique attrs | |
end | |
create_table "digital_product", :force => true do |t| | |
t.integer "product_id" | |
# unique attrs | |
end | |
create_table "event", :force => true do |t| | |
t.string "name" | |
t.enum "type" # workshop etc | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment