16 lines
348 B
Ruby
16 lines
348 B
Ruby
# frozen_string_literal: true
|
|
|
|
class InitializeConversionOfCiPipelines < Gitlab::Database::Migration[2.1]
|
|
disable_ddl_transaction!
|
|
|
|
TABLE = :ci_pipelines
|
|
COLUMNS = %i[id]
|
|
|
|
def up
|
|
initialize_conversion_of_integer_to_bigint(TABLE, COLUMNS)
|
|
end
|
|
|
|
def down
|
|
revert_initialize_conversion_of_integer_to_bigint(TABLE, COLUMNS)
|
|
end
|
|
end
|