summaryrefslogtreecommitdiff
path: root/db/migrate/20130613165816_add_password_expires_at_to_users.rb
blob: 47306a370a8d1b1d0ff0e92b24c045cddafb7a8c (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPasswordExpiresAtToUsers < ActiveRecord::Migration
  def change
    add_column :users, :password_expires_at, :datetime
  end
end