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