Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150213121042_add_password_automatically_set_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e84a13f0d2aca282078b12baffc218c758031d4 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPasswordAutomaticallySetToUser < ActiveRecord::Migration
  def change
    add_column :users, :password_automatically_set, :boolean, default: false
  end
end