debian-mirror-gitlab/db/migrate/20191014030730_add_author_index_to_design_management_versions.rb
2019-12-26 22:10:19 +05:30

18 lines
405 B
Ruby

# frozen_string_literal: true
class AddAuthorIndexToDesignManagementVersions < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :design_management_versions, :author_id, where: 'author_id IS NOT NULL'
end
def down
remove_concurrent_index :design_management_versions, :author_id
end
end