gitlab-org--gitlab-foss/db/migrate/20130613165816_add_password...

6 lines
138 B
Ruby
Raw Normal View History

2013-06-13 17:01:35 +00:00
class AddPasswordExpiresAtToUsers < ActiveRecord::Migration
def change
add_column :users, :password_expires_at, :datetime
end
end