Sha256: 7b082a68555bf7c0edb35f6a0ecec7b4996cde2ed0f41d7fa8b925f7c701c81d
Contents?: true
Size: 1.87 KB
Versions: 1
Compression:
Stored size: 1.87 KB
Contents
require 'active_support' require 'active_support/core_ext/module/attr_accessor_with_default' module AutomaticForeignKey::ActiveRecord::ConnectionAdapters module TableDefinition def self.included(base) base.class_eval do alias_method_chain :column, :automatic_foreign_key alias_method_chain :primary_key, :automatic_foreign_key end end def primary_key_with_automatic_foreign_key(name, options = {}) column(name, :primary_key, options) end def indices @indices ||= [] end def column_with_automatic_foreign_key(name, type, options = {}) column_without_automatic_foreign_key(name, type, options) unless AutomaticForeignKey.disable references = ActiveRecord::Base.references(self.name, name, options) if references AutomaticForeignKey.set_default_update_and_delete_actions!(options) foreign_key(name, references.first, references.last, options) if index = afk_index_options(options) # append [column_name, index_options] pair self.indices << [name, AutomaticForeignKey.options_for_index(index)] end elsif options[:index] self.indices << [name, AutomaticForeignKey.options_for_index(options[:index])] end end self end # Some people liked this; personally I've decided against using it but I'll keep it nonetheless def belongs_to(table, options = {}) options = options.merge(:references => table) options[:on_delete] = options.delete(:dependent) if options.has_key?(:dependent) column("#{table.to_s.singularize}_id".to_sym, :integer, options) end protected def afk_index_options(options) options.fetch(:index, afk_use_auto_index?) end def afk_use_auto_index? AutomaticForeignKey.auto_index && !ActiveRecord::Schema.defining? end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
automatic_foreign_key-1.3.0 | lib/automatic_foreign_key/active_record/connection_adapters/table_definition.rb |