debian-mirror-gitlab/db/migrate/20230207030244_initialize_conversion_of_timelogs_note_id_to_bigint.rb
2023-04-23 21:23:45 +05:30

17 lines
356 B
Ruby

# frozen_string_literal: true
class InitializeConversionOfTimelogsNoteIdToBigint < Gitlab::Database::Migration[2.1]
TABLE = :timelogs
COLUMNS = %i[note_id]
enable_lock_retries!
def up
initialize_conversion_of_integer_to_bigint(TABLE, COLUMNS)
end
def down
revert_initialize_conversion_of_integer_to_bigint(TABLE, COLUMNS)
end
end