summaryrefslogtreecommitdiffstats
path: root/db/migrate/20140903143914_add_password_changed_at_to_user.rb
blob: 19a2ea0a555e94164c27ce1ae5cae57bf93da7d3 (plain)
1
2
3
4
5
class AddPasswordChangedAtToUser < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :passwd_changed_on, :datetime
  end
end