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