fix build on wily; fix some moderation branch language constants

This commit is contained in:
Frederik Ramm 2016-02-28 11:19:44 +01:00 committed by Matt Amos
parent 49050467cc
commit f3519e9781
4 changed files with 17 additions and 10 deletions

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", :using => "GIST"
add_index "changesets", %w(min_lat max_lat min_lon max_lon), :name => "changesets_bbox_idx"
end
def self.down