Module: Upknit::SetDefaultReferenceTypeToUuid

Defined in:
lib/upknit/set_default_reference_type_to_uuid.rb

Instance Method Summary collapse

Instance Method Details

#options_for_migrationObject



5
6
7
8
9
10
11
# File 'lib/upknit/set_default_reference_type_to_uuid.rb', line 5

def options_for_migration
  super.tap do |options|
    if reference? && !polymorphic?
      options[:type] ||= :uuid
    end
  end
end