method

update_or_create_entry

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: InternalMetadata
update_or_create_entry(connection, key, value) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/internal_metadata.rb, line 112
      def update_or_create_entry(connection, key, value)
        entry = select_entry(connection, key)

        if entry
          if entry[value_key] != value
            update_entry(connection, key, value)
          else
            entry[value_key]
          end
        else
          create_entry(connection, key, value)
        end
      end
Register or log in to add new notes.