vita_app/db/migrate/20160209230957_create_product_collections.rb
Nicolas Bally 1d3af87d4c initial
2016-04-28 10:07:08 +02:00

11 lines
277 B
Ruby
Executable File

class CreateProductCollections < ActiveRecord::Migration
def change
create_table :product_collections do |t|
t.references :product_category, index: true
t.timestamps null: false
end
add_foreign_key :product_collections, :product_categories
end
end