summaryrefslogtreecommitdiff
path: root/db/migrate/20130304104623_add_state_to_user.rb
blob: 4456d022e3f2eedc3f92f8183cd34148c65848b1 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddStateToUser < ActiveRecord::Migration
  def change
    add_column :users, :state, :string
  end
end