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