class CreateFoos < ActiveRecord::Migration def change create_table :foos do |t| t.string :bar, :null => false t.index :bar, unique: true end end end