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: 685f08442762183f53bad4ec097324aec9b04971 (plain)
1
2
3
4
5
class AddHideNoPasswordToUser < ActiveRecord::Migration
  def change
    add_column :users, :hide_no_password, :boolean, default: false
  end
end