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: 0fed5eaf4616ab6b4187d47cbca17ba1800e4e25 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPublicEmailToUsers < ActiveRecord::Migration
  def change
    add_column :users, :public_email, :string, default: "", null: false
  end
end