debian-mirror-gitlab/db/migrate/20130613165816_add_password_expires_at_to_users.rb
2016-06-16 23:09:34 +05:30

7 lines
160 B
Ruby

# rubocop:disable all
class AddPasswordExpiresAtToUsers < ActiveRecord::Migration
def change
add_column :users, :password_expires_at, :datetime
end
end