debian-mirror-gitlab/db/migrate/20230420040912_initialize_conversion_of_ci_pipelines.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
348 B
Ruby
Raw Normal View History

2023-07-09 08:55:56 +05:30
# 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