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

20150413192223_add_public_email_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 991f0c668c333f2e4e243a87d2979219005ae930 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPublicEmailToUsers < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :public_email, :string, default: "", null: false
  end
end