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

20170603200744_add_email_provider_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed90af9aadc63bf322a8b08cc8443f76f40423a8 (plain)
1
2
3
4
5
6
7
8
9
class AddEmailProviderToUsers < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :users, :email_provider, :string
  end
end