method

create_table_and_set_flags

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: InternalMetadata
create_table_and_set_flags(environment, schema_sha1 = nil) public

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 66
    def create_table_and_set_flags(environment, schema_sha1 = nil)
      return unless enabled?

      create_table
      update_or_create_entry(:environment, environment)
      update_or_create_entry(:schema_sha1, schema_sha1) if schema_sha1
    end
Register or log in to add new notes.