debian-mirror-gitlab/db/migrate/20230420040912_initialize_conversion_of_ci_pipelines.rb
2023-07-09 08:55:56 +05:30

17 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