Revert changes to old migration.

This commit is contained in:
Matt Amos 2016-08-22 18:48:48 +01:00
parent c3ad6aa292
commit 82ac68a26e

View file

@ -4,7 +4,7 @@ class AddMoreChangesetIndexes < ActiveRecord::Migration
def self.up
add_index "changesets", ["created_at"], :name => "changesets_created_at_idx"
add_index "changesets", ["closed_at"], :name => "changesets_closed_at_idx"
add_index "changesets", %w(min_lat max_lat min_lon max_lon), :name => "changesets_bbox_idx"
add_index "changesets", %w(min_lat max_lat min_lon max_lon), :name => "changesets_bbox_idx", :using => "GIST"
end
def self.down