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: a2af3510b9c1c98b5f3ce022966fb34199e81704 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddHideNoPasswordToUser < ActiveRecord::Migration
  def change
    add_column :users, :hide_no_password, :boolean, default: false
  end
end