Sha256: 3d97c567c4cb86e2feb257e819a861d921b91fbea19e52d4f8cf7fc04b4356c0
Contents?: true
Size: 710 Bytes
Versions: 3
Compression:
Stored size: 710 Bytes
Contents
require 'active_record/connection_adapters/abstract/schema_statements' module Ridgepole module SchemaStatementsExt def index_name_exists?(*) if Ridgepole::ExecuteExpander.noop caller_methods = caller.map {|i| i =~ /:\d+:in `(.+)'/ ? $1 : '' } if caller_methods.any? {|i| i =~ /\Aremove_index/ } true elsif caller_methods.any? {|i| i =~ /\Aadd_index/ } false else super end else super end end def rename_table_indexes(*) # Nothing to do end end end module ActiveRecord module ConnectionAdapters class AbstractAdapter prepend Ridgepole::SchemaStatementsExt end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ridgepole-0.7.3.beta | lib/ridgepole/schema_statements_ext.rb |
ridgepole-0.7.2 | lib/ridgepole/schema_statements_ext.rb |
ridgepole-0.7.2.beta | lib/ridgepole/schema_statements_ext.rb |