method

update_or_create_entry

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: InternalMetadata
update_or_create_entry(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 98
      def update_or_create_entry(key, value)
        entry = select_entry(key)

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