debian-mirror-gitlab/db/migrate/20200409105456_add_checksum_index_to_package_file.rb
2020-05-24 23:13:21 +05:30

18 lines
481 B
Ruby

# frozen_string_literal: true
class AddChecksumIndexToPackageFile < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :packages_package_files, :verification_checksum, where: "(verification_checksum IS NOT NULL)", name: "packages_packages_verification_checksum_partial"
end
def down
remove_concurrent_index :packages_package_files, :verification_checksum
end
end