X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4abd9cfcf19701bf43322374c5df6dd586449e54..ddb140f3877007249b8bac30dda575e56a1586f9:/config/initializers/migrate.rb diff --git a/config/initializers/migrate.rb b/config/initializers/migrate.rb index 787f3d551..add6aaea9 100644 --- a/config/initializers/migrate.rb +++ b/config/initializers/migrate.rb @@ -1,14 +1,6 @@ if defined?(ActiveRecord::ConnectionAdapters::AbstractAdapter) module OpenStreetMap module ActiveRecord - module AbstractAdapter - def add_index_options(table_name, column_name, options = {}) - columns = options.delete(:columns) - index_name, index_type, index_columns, index_options, algorithm, using = super(table_name, column_name, options) - [index_name, index_type, columns || index_columns, index_options, algorithm, using] - end - end - module PostgreSQLAdapter def quote_column_name(name) Array(name).map { |n| super(n) }.join(", ") @@ -54,6 +46,5 @@ if defined?(ActiveRecord::ConnectionAdapters::AbstractAdapter) end end - ActiveRecord::ConnectionAdapters::AbstractAdapter.prepend(OpenStreetMap::ActiveRecord::AbstractAdapter) ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.prepend(OpenStreetMap::ActiveRecord::PostgreSQLAdapter) end