Skip to content

Instantly share code, notes, and snippets.

@aaronmoodie
Last active August 29, 2015 14:24
Show Gist options
  • Save aaronmoodie/f1f8b2e41507d2a743d9 to your computer and use it in GitHub Desktop.
Save aaronmoodie/f1f8b2e41507d2a743d9 to your computer and use it in GitHub Desktop.
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