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

20150213114800_add_hide_no_password_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 348c0d22aba49a4a9b08e4a9ac1f57a41b45f2d1 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddHideNoPasswordToUser < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :hide_no_password, :boolean, default: false
  end
end