9 lines
193 B
Ruby
9 lines
193 B
Ruby
class AddEmailProviderToUsers < ActiveRecord::Migration
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :users, :email_provider, :string
|
|
end
|
|
end
|