21 lines
531 B
Ruby
21 lines
531 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddInstanceToServices < ActiveRecord::Migration[6.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
disable_ddl_transaction!
|
|
|
|
# rubocop:disable Migration/AddColumnWithDefault
|
|
# rubocop:disable Migration/UpdateLargeTable
|
|
def up
|
|
add_column_with_default(:services, :instance, :boolean, default: false)
|
|
end
|
|
# rubocop:enable Migration/AddColumnWithDefault
|
|
# rubocop:enable Migration/UpdateLargeTable
|
|
|
|
def down
|
|
remove_column(:services, :instance)
|
|
end
|
|
end
|