debian-mirror-gitlab/db/migrate/20170503004425_add_index_to_last_repository_updated_at_on_projects.rb
2017-08-17 22:00:37 +05:30

16 lines
397 B
Ruby

class AddIndexToLastRepositoryUpdatedAtOnProjects < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index(:projects, :last_repository_updated_at)
end
def down
remove_concurrent_index(:projects, :last_repository_updated_at) if index_exists?(:projects, :last_repository_updated_at)
end
end