# frozen_string_literal: true class AddLinkTypeToReleaseLinks < ActiveRecord::Migration[6.0] include Gitlab::Database::MigrationHelpers DOWNTIME = false def up with_lock_retries do add_column :release_links, :link_type, :integer, limit: 2, default: 0 end end def down with_lock_retries do remove_column :release_links, :link_type end end end