debian-mirror-gitlab/db/migrate/20191014084150_add_index_on_snippets_project_id_and_visibility_level.rb
2019-12-21 20:55:43 +05:30

18 lines
386 B
Ruby

# frozen_string_literal: true
class AddIndexOnSnippetsProjectIdAndVisibilityLevel < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :snippets, [:project_id, :visibility_level]
end
def down
remove_concurrent_index :snippets, [:project_id, :visibility_level]
end
end