diet_help/db/migrate/20160419102334_create_produ...

11 lines
213 B
Ruby

class CreateProductGroups < ActiveRecord::Migration
def change
create_table :product_groups do |t|
t.string :name
t.timestamps null: false
end
add_index :product_groups, :name
end
end