Module: ActiveRecord
Overview
This file is generated. Do not edit manually.
To regenerate:
bundle exec rake db:postgresql:update_well_known_oids
Constant Summary
-
UnknownAttributeError =
# File 'activerecord/lib/active_record/errors.rb', line 457
Raised when unknown attributes are supplied via mass assignment.
ActiveModel::UnknownAttributeError
Class Attribute Summary
-
.db_warnings_action
rw
The action to take when database query produces warning.
- .db_warnings_action=(action) rw
-
.default_timezone=(default_timezone)
writeonly
Determines whether to use
Time.utc(using:utc) orTime.local(using:local) when pulling dates and times from the database. - .deprecated_associations_options rw
- .deprecated_associations_options=(options) rw
-
.global_executor_concurrency=(global_executor_concurrency)
rw
Set the .global_executor_concurrency.
- .marshalling_format_version rw
- .marshalling_format_version=(value) rw
-
.permanent_connection_checkout=(value)
writeonly
Defines whether
ActiveRecord::Base.connectionis allowed, deprecated, or entirely disallowed. -
.protected_environments
rw
The array of names of environments where destructive actions should be prohibited.
-
.protected_environments=(environments)
rw
Sets an array of names of environments where destructive actions should be prohibited.
-
.schema_cache_ignored_tables
rw
A list of tables or regex's to match tables to ignore when dumping the schema cache.
-
.schema_cache_ignored_tables=(tables)
rw
Sets a list of tables or regex's to match tables to ignore when dumping the schema cache.
- .default_transaction_isolation_level rw Internal use only
- .default_transaction_isolation_level=(isolation_level) rw Internal use only
- .global_executor_concurrency rw Internal use only
Class Method Summary
-
.action_on_strict_loading_violation
Set the application to log or raise when an association violates strict loading.
-
.after_all_transactions_commit(&block)
Registers a block to be called after all the current transactions have been committed.
-
.async_query_executor
Sets the async_query_executor for an application.
-
.db_warnings_ignore
Specify allowlist of database warnings.
-
.disconnect_all!
Explicitly closes all database connections in all pools.
-
.dump_schema_after_migration
Specify whether schema dump should happen at the end of the bin/rails db:migrate command.
-
.dump_schema_migrations
Specifies whether to dump the
schema_migrationstable when dumping the database schema in the:rubyformat. -
.dump_schema_migrations_sort_by
Specifies the proc used to order versions when dumping the
schema_migrationstable in the:rubyformat. -
.dump_schemas
Specifies which database schemas to dump when calling db:schema:dump.
- .eager_load!
-
.error_on_ignored_order
Specifies if an error should be raised if the query has an order being ignored when doing batch queries.
-
.gem_version
Returns the currently loaded version of Active Record as a
Gem::Version. -
.generate_secure_token_on
Controls when to generate a value for
has_secure_tokendeclarations. -
.lazily_load_schema_cache
Lazily load the schema cache.
-
.message_verifiers
::ActiveSupport::MessageVerifiersinstance for Active Record. -
.migration_strategy
Specify the global default strategy to use for executing migrations.
-
.protocol_adapters
Provides a mapping between database protocols/DBMSs and the underlying database adapter to be used.
-
.queues
Specifies the names of the queues used by background jobs.
-
.raise_int_wider_than_64bit
Application configurable boolean that denotes whether or not to raise an exception when the PostgreSQLAdapter is provided with an integer that is wider than signed 64bit representation.
-
.schema_format
Specifies the format to use when dumping the database schema with Rails' Rakefile.
-
.schema_ignored_table?(table_name) ⇒ Boolean
schema_ignored_table?(:developers). -
.schema_ignored_tables
A list of tables or regex's to match tables to ignore when dumping the schema cache and the schema file.
-
.schema_versions_formatter
Specify the formatter used by schema dumper to format versions information.
-
.shuffle_unordered_selects
Shuffles the rows of every
SELECTActive Record generates that has noORDER BYclause. -
.timestamped_migrations
Specify whether or not to use timestamps for migration versions.
-
.use_yaml_unsafe_load
Application configurable boolean that instructs the YAML Coder to use an unsafe load if set to true.
-
.validate_migration_timestamps
Specify whether or not to validate migration timestamps.
-
.verbose_query_logs
Specifies if the methods calling database queries should be logged below their relevant queries.
-
.verify_foreign_keys_for_fixtures
If true,
::Railswill verify all foreign keys in the database after loading fixtures. -
.version
Returns the currently loaded version of Active Record as a
Gem::Version. -
.with_transaction_isolation_level(isolation_level, &block)
Sets a transaction isolation level for all connection pools within the block.
-
.yaml_column_permitted_classes
Application configurable array that provides additional permitted classes to Psych safe_load in the YAML Coder.
- .all_open_transactions Internal use only
- .deprecator Internal use only
- .global_thread_pool_async_query_executor Internal use only
::ActiveSupport::Autoload - Extended
Instance Attribute Summary
- #action_on_strict_loading_violation rw
- #application_record_class rw
- #async_query_executor rw
- #before_committed_on_all_records rw
- #belongs_to_required_validates_foreign_key rw
- #database_cli rw
- #db_warnings_action readonly
- #db_warnings_ignore rw
- #default_timezone readonly
- #disable_prepared_statements rw
- #dump_schema_after_migration rw
- #dump_schema_migrations rw
- #dump_schema_migrations_sort_by rw
- #dump_schemas rw
- #error_on_ignored_order rw
- #generate_secure_token_on rw
- #index_nested_attribute_errors rw
- #lazily_load_schema_cache rw
- #maintain_test_schema rw
- #message_verifiers rw
- #migration_strategy rw
- #permanent_connection_checkout readonly
- #protected_environments readonly
- #protocol_adapters rw
- #query_transformers rw
- #queues rw
- #raise_int_wider_than_64bit rw
- #raise_on_assign_to_attr_readonly rw
- #raise_on_missing_required_finder_order_columns rw
- #reading_role rw
- #run_after_transaction_callbacks_in_order_defined rw
- #schema_format rw
- #schema_ignored_tables rw
- #schema_versions_formatter rw
- #shuffle_unordered_selects rw
- #timestamped_migrations rw
- #use_yaml_unsafe_load rw
- #validate_migration_timestamps rw
- #verbose_query_logs rw
- #verify_foreign_keys_for_fixtures rw
- #writing_role rw
- #yaml_column_permitted_classes rw
Instance Method Summary
Class Attribute Details
.db_warnings_action (rw)
The action to take when database query produces warning.
Must be one of :ignore, :log, :raise, :report, or a custom proc.
The default is :ignore.
# File 'activerecord/lib/active_record.rb', line 271
RDoc directive :singleton-method: db_warnings_action
.db_warnings_action=(action) (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 273
def self.db_warnings_action=(action) @db_warnings_action = case action when :ignore nil when :log ->(warning) do = "[#{warning.class}] #{warning.}" += " (#{warning.code})" if warning.code ActiveRecord::Base.logger.warn() end when :raise ->(warning) { raise warning } when :report ->(warning) { Rails.error.report(warning, handled: true) } when Proc action else raise ArgumentError, "db_warnings_action must be one of :ignore, :log, :raise, :report, or a custom proc." end end
.default_timezone=(default_timezone) (writeonly)
Determines whether to use Time.utc (using :utc) or Time.local (using :local) when pulling
dates and times from the database. This is set to :utc by default.
# File 'activerecord/lib/active_record.rb', line 256
def self.default_timezone=(default_timezone) unless %i(local utc).include?(default_timezone) raise ArgumentError, "default_timezone must be either :utc (default) or :local." end @default_timezone = default_timezone end
.default_transaction_isolation_level (rw)
# File 'activerecord/lib/active_record.rb', line 681
def self.default_transaction_isolation_level # :nodoc: ActiveSupport::IsolatedExecutionState[:active_record_transaction_isolation] end
.default_transaction_isolation_level=(isolation_level) (rw)
# File 'activerecord/lib/active_record.rb', line 677
def self.default_transaction_isolation_level=(isolation_level) # :nodoc: ActiveSupport::IsolatedExecutionState[:active_record_transaction_isolation] = isolation_level end
.deprecated_associations_options (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 565
def self. { mode: ActiveRecord::Associations::Deprecation.mode, backtrace: ActiveRecord::Associations::Deprecation.backtrace } end
.deprecated_associations_options=(options) (rw)
# File 'activerecord/lib/active_record.rb', line 549
def self.() raise ArgumentError, "deprecated_associations_options must be a hash" unless .is_a?(Hash) valid_keys = [:mode, :backtrace] invalid_keys = .keys - valid_keys unless invalid_keys.empty? inflected_key = invalid_keys.size == 1 ? "key" : "keys" raise ArgumentError, "invalid deprecated_associations_options #{inflected_key} #{invalid_keys.map(&:inspect).to_sentence} (valid keys are #{valid_keys.map(&:inspect).to_sentence})" end .each do |key, value| ActiveRecord::Associations::Deprecation.send("#{key}=", value) end end
.global_executor_concurrency (rw)
# File 'activerecord/lib/active_record.rb', line 348
def self.global_executor_concurrency # :nodoc: @global_executor_concurrency ||= nil end
.global_executor_concurrency=(global_executor_concurrency) (rw)
Set the .global_executor_concurrency. This configuration value can only be used with the global thread pool async query executor.
# File 'activerecord/lib/active_record.rb', line 340
def self.global_executor_concurrency=(global_executor_concurrency) if self.async_query_executor.nil? || self.async_query_executor == :multi_thread_pool raise ArgumentError, "`global_executor_concurrency` cannot be set when the executor is nil or set to `:multi_thread_pool`. For multiple thread pools, please set the concurrency in your database configuration." end @global_executor_concurrency = global_executor_concurrency end
.marshalling_format_version (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 572
def self.marshalling_format_version Marshalling.format_version end
.marshalling_format_version=(value) (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 576
def self.marshalling_format_version=(value) Marshalling.format_version = value end
.permanent_connection_checkout=(value) (writeonly)
Defines whether ActiveRecord::Base.connection is allowed, deprecated, or entirely disallowed.
# File 'activerecord/lib/active_record.rb', line 356
def self.permanent_connection_checkout=(value) unless [true, :deprecated, :disallowed].include?(value) raise ArgumentError, "permanent_connection_checkout must be one of: `true`, `:deprecated` or `:disallowed`" end @permanent_connection_checkout = value end
.protected_environments (rw)
The array of names of environments where destructive actions should be prohibited. By default, the value is ["production"].
# File 'activerecord/lib/active_record.rb', line 199
RDoc directive :singleton-method: protected_environments
.protected_environments=(environments) (rw)
Sets an array of names of environments where destructive actions should be prohibited.
# File 'activerecord/lib/active_record.rb', line 203
def self.protected_environments=(environments) @protected_environments = environments.map(&:to_s) end
.schema_cache_ignored_tables (rw)
A list of tables or regex's to match tables to ignore when dumping the schema cache.
# File 'activerecord/lib/active_record.rb', line 210
def self.schema_cache_ignored_tables deprecator.warn(<<~MSG) `config.active_record.schema_cache_ignored_tables` is deprecated and will be removed. Use `config.active_record.schema_ignored_tables` instead. MSG schema_ignored_tables end
.schema_cache_ignored_tables=(tables) (rw)
Sets a list of tables or regex's to match tables to ignore when dumping the schema cache.
# File 'activerecord/lib/active_record.rb', line 221
def self.schema_cache_ignored_tables=(tables) deprecator.warn(<<~MSG) `config.active_record.schema_cache_ignored_tables` is deprecated and will be removed. Use `config.active_record.schema_ignored_tables` instead. MSG self.schema_ignored_tables = tables end
Class Method Details
.action_on_strict_loading_violation
Set the application to log or raise when an association violates strict loading.
Defaults to :raise.
# File 'activerecord/lib/active_record.rb', line 425
RDoc directive :singleton-method: action_on_strict_loading_violation
.after_all_transactions_commit(&block)
Registers a block to be called after all the current transactions have been committed.
If there is no currently open transaction, the block is called immediately.
If there are multiple nested transactions, the block is called after the outermost one has been committed,
If any of the currently open transactions is rolled back, the block is never called.
If multiple transactions are open across multiple databases, the block will be invoked if and once all of them have been committed. But note that nesting transactions across two distinct databases is a sharding anti-pattern that comes with a world of hurts.
# File 'activerecord/lib/active_record.rb', line 643
def self.after_all_transactions_commit(&block) open_transactions = all_open_transactions if open_transactions.empty? yield elsif open_transactions.size == 1 open_transactions.first.after_commit(&block) else count = open_transactions.size callback = -> do count -= 1 block.call if count.zero? end open_transactions.each do |t| t.after_commit(&callback) end open_transactions = nil # rubocop:disable Lint/UselessAssignment avoid holding it in the closure end end
.all_open_transactions
# File 'activerecord/lib/active_record.rb', line 663
def self.all_open_transactions # :nodoc: open_transactions = [] Base.connection_handler.each_connection_pool do |pool| if active_connection = pool.active_connection current_transaction = active_connection.current_transaction if current_transaction.open? && current_transaction.joinable? open_transactions << current_transaction end end end open_transactions end
.async_query_executor
Sets the async_query_executor for an application. By default the thread pool executor
set to nil which will not run queries in the background. Applications must configure
a thread pool executor to use this feature. Options are:
* nil - Does not initialize a thread pool executor. Any async calls will be
run in the foreground.
* :global_thread_pool - Initializes a single {Concurrent::ThreadPoolExecutor}
that uses the {async_query_concurrency} for the {max_threads} value.
* :multi_thread_pool - Initializes a {Concurrent::ThreadPoolExecutor} for each
database connection. The initializer values are defined in the configuration hash.
# File 'activerecord/lib/active_record.rb', line 324
RDoc directive :singleton-method: async_query_executor
.db_warnings_ignore
Specify allowlist of database warnings. Can be a string, regular expression, or an error code from the database.
ActiveRecord::Base.db_warnings_ignore = [/`SHOW WARNINGS` did not return the warnings/, "01000"]
# File 'activerecord/lib/active_record.rb', line 303
RDoc directive :singleton-method: db_warnings_ignore
.deprecator
# File 'activerecord/lib/active_record/deprecator.rb', line 4
def self.deprecator # :nodoc: @deprecator ||= ActiveSupport::Deprecation.new end
.disconnect_all!
Explicitly closes all database connections in all pools.
# File 'activerecord/lib/active_record.rb', line 626
def self.disconnect_all! ConnectionAdapters::PoolConfig.disconnect_all! end
.dump_schema_after_migration
Specify whether schema dump should happen at the end of the bin/rails db:migrate command. This is true by default, which is useful for the development environment. This should ideally be false in the production environment where dumping schema is rarely needed.
# File 'activerecord/lib/active_record.rb', line 481
RDoc directive :singleton-method: dump_schema_after_migration
.dump_schema_migrations
Specifies whether to dump the schema_migrations table when dumping
the database schema in the :ruby format.
# File 'activerecord/lib/active_record.rb', line 498
RDoc directive :singleton-method: dump_schema_migrations
.dump_schema_migrations_sort_by
Specifies the proc used to order versions when dumping the schema_migrations
table in the :ruby format.
# File 'activerecord/lib/active_record.rb', line 505
RDoc directive :singleton-method: dump_schema_migrations_sort_by
.dump_schemas
Specifies which database schemas to dump when calling db:schema:dump.
If the value is :schema_search_path (the default), any schemas listed in
schema_search_path are dumped. Use :all to dump all schemas regardless
of schema_search_path, or a string of comma separated schemas for a
custom list.
# File 'activerecord/lib/active_record.rb', line 491
RDoc directive :singleton-method: dump_schemas
.eager_load!
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 615
def self.eager_load! super ActiveRecord::Locking.eager_load! ActiveRecord::Scoping.eager_load! ActiveRecord::Associations.eager_load! ActiveRecord::AttributeMethods.eager_load! ActiveRecord::ConnectionAdapters.eager_load! ActiveRecord::Encryption.eager_load! end
.error_on_ignored_order
Specifies if an error should be raised if the query has an order being ignored when doing batch queries. Useful in applications where the scope being ignored is error-worthy, rather than a warning.
# File 'activerecord/lib/active_record.rb', line 445
RDoc directive :singleton-method: error_on_ignored_order
.gem_version
Returns the currently loaded version of Active Record as a Gem::Version.
.generate_secure_token_on
Controls when to generate a value for has_secure_token
declarations. Defaults to :create.
# File 'activerecord/lib/active_record.rb', line 546
RDoc directive :singleton-method: generate_secure_token_on
.global_thread_pool_async_query_executor
# File 'activerecord/lib/active_record.rb', line 327
def self.global_thread_pool_async_query_executor # :nodoc: concurrency = global_executor_concurrency || 4 @global_thread_pool_async_query_executor ||= Concurrent::ThreadPoolExecutor.new( name: "ActiveRecord-global-async-query-executor", min_threads: 0, max_threads: concurrency, max_queue: concurrency * 4, fallback_policy: :caller_runs ) end
.lazily_load_schema_cache
Lazily load the schema cache. This option will load the schema cache when a connection is established rather than on boot.
# File 'activerecord/lib/active_record.rb', line 192
RDoc directive :singleton-method: lazily_load_schema_cache
.message_verifiers
::ActiveSupport::MessageVerifiers instance for Active Record. If you are using
::Rails, this will be set to Rails.application.message_verifiers.
# File 'activerecord/lib/active_record.rb', line 613
RDoc directive :singleton-method:
.migration_strategy
Specify the global default strategy to use for executing migrations. Individual adapter classes can override this by setting their own migration_strategy.
# File 'activerecord/lib/active_record.rb', line 466
RDoc directive :singleton-method: migration_strategy
.protocol_adapters
Provides a mapping between database protocols/DBMSs and the
underlying database adapter to be used. This is used only by the
DATABASE_URL environment variable.
Example
DATABASE_URL="mysql://myuser:mypass@localhost/somedatabase"
The above URL specifies that MySQL is the desired protocol/DBMS, and the
application configuration can then decide which adapter to use. For this example
the default mapping is from mysql to mysql2, but :trilogy
is also supported.
ActiveRecord.protocol_adapters.mysql = "mysql2"
The protocols names are arbitrary, and external database adapters can be registered and set here.
# File 'activerecord/lib/active_record.rb', line 599
RDoc directive :singleton-method: protocol_adapters
.queues
Specifies the names of the queues used by background jobs.
# File 'activerecord/lib/active_record.rb', line 378
RDoc directive :singleton-method: queues
.raise_int_wider_than_64bit
Application configurable boolean that denotes whether or not to raise an exception when the PostgreSQLAdapter is provided with an integer that is wider than signed 64bit representation
# File 'activerecord/lib/active_record.rb', line 532
RDoc directive :singleton-method: raise_int_wider_than_64bit
.schema_format
Specifies the format to use when dumping the database schema with Rails'
Rakefile. If :sql, the schema is dumped as (potentially database-
specific) SQL statements. If :ruby, the schema is dumped as an
::ActiveRecord::Schema file which can be loaded into any database that
supports migrations. Use :ruby if you want to have different database
adapters for, e.g., your development and test environments. This can be
overridden per-database in the database configuration.
# File 'activerecord/lib/active_record.rb', line 437
RDoc directive :singleton-method: schema_format
.schema_ignored_table?(table_name) ⇒ Boolean
schema_ignored_table?(:developers)
# File 'activerecord/lib/active_record.rb', line 239
def self.schema_ignored_table?(table_name) schema_ignored_tables.any? { |ignored| ignored === table_name } end
.schema_ignored_tables
A list of tables or regex's to match tables to ignore when dumping the
schema cache and the schema file. For example if this is set to [/^_/]
tables named with an underscore are dumped to neither.
# File 'activerecord/lib/active_record.rb', line 235
RDoc directive :singleton-method: schema_ignored_tables
.schema_versions_formatter
Specify the formatter used by schema dumper to format versions information.
# File 'activerecord/lib/active_record.rb', line 472
RDoc directive :singleton-method: schema_versions_formatter
.shuffle_unordered_selects
Shuffles the rows of every SELECT Active Record generates that has no
ORDER BY clause.
The order of such a query is not specified, and databases are free to return its rows in any order. Enabling this option makes that explicit, so code (and tests) that accidentally rely on the order a given database happens to return today fails loudly instead of breaking later.
It is meant to be enabled in the test or development environments only.
Rows are shuffled after the database has returned them, so queries built from
raw SQL strings are left untouched (Active Record cannot tell whether they are
ordered), and queries ending in LIMIT 1 are unaffected because the database
has already picked the row.
# File 'activerecord/lib/active_record.rb', line 415
RDoc directive :singleton-method: shuffle_unordered_selects
.timestamped_migrations
Specify whether or not to use timestamps for migration versions
# File 'activerecord/lib/active_record.rb', line 451
RDoc directive :singleton-method:
.use_yaml_unsafe_load
Application configurable boolean that instructs the YAML Coder to use an unsafe load if set to true.
# File 'activerecord/lib/active_record.rb', line 524
RDoc directive :singleton-method: use_yaml_unsafe_load
.validate_migration_timestamps
Specify whether or not to validate migration timestamps. When set, an error will be raised if a timestamp is more than a day ahead of the timestamp associated with the current time. .timestamped_migrations must be set to true.
# File 'activerecord/lib/active_record.rb', line 459
RDoc directive :singleton-method:
.verbose_query_logs
Specifies if the methods calling database queries should be logged below their relevant queries. Defaults to false.
# File 'activerecord/lib/active_record.rb', line 371
RDoc directive :singleton-method: verbose_query_logs
.verify_foreign_keys_for_fixtures
If true, ::Rails will verify all foreign keys in the database after loading fixtures.
An error will be raised if there are any foreign key violations, indicating incorrectly
written fixtures.
Supported by PostgreSQL and SQLite.
# File 'activerecord/lib/active_record.rb', line 514
RDoc directive :singleton-method: verify_foreign_keys_for_fixtures
.version
Returns the currently loaded version of Active Record as a Gem::Version.
# File 'activerecord/lib/active_record/version.rb', line 7
def self.version gem_version end
.with_transaction_isolation_level(isolation_level, &block)
Sets a transaction isolation level for all connection pools within the block.
# File 'activerecord/lib/active_record.rb', line 686
def self.with_transaction_isolation_level(isolation_level, &block) original_level = self.default_transaction_isolation_level self.default_transaction_isolation_level = isolation_level yield ensure self.default_transaction_isolation_level = original_level end
.yaml_column_permitted_classes
Application configurable array that provides additional permitted classes to Psych safe_load in the YAML Coder
# File 'activerecord/lib/active_record.rb', line 539
RDoc directive :singleton-method: yaml_column_permitted_classes
Instance Attribute Details
#action_on_strict_loading_violation (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 425
singleton_class.attr_accessor :action_on_strict_loading_violation
#application_record_class (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 418
singleton_class.attr_accessor :application_record_class
#async_query_executor (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 324
singleton_class.attr_accessor :async_query_executor
#before_committed_on_all_records (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 390
singleton_class.attr_accessor :before_committed_on_all_records
#belongs_to_required_validates_foreign_key (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 387
singleton_class.attr_accessor :belongs_to_required_validates_foreign_key
#database_cli (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 249
singleton_class.attr_accessor :database_cli
#db_warnings_action (readonly)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 271
singleton_class.attr_reader :db_warnings_action
#db_warnings_ignore (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 303
singleton_class.attr_accessor :db_warnings_ignore
#default_timezone (readonly)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 252
singleton_class.attr_reader :default_timezone
#disable_prepared_statements (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 185
singleton_class.attr_accessor :disable_prepared_statements
#dump_schema_after_migration (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 481
singleton_class.attr_accessor :dump_schema_after_migration
#dump_schema_migrations (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 498
singleton_class.attr_accessor :dump_schema_migrations
#dump_schema_migrations_sort_by (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 505
singleton_class.attr_accessor :dump_schema_migrations_sort_by
#dump_schemas (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 491
singleton_class.attr_accessor :dump_schemas
#error_on_ignored_order (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 445
singleton_class.attr_accessor :error_on_ignored_order
#generate_secure_token_on (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 546
singleton_class.attr_accessor :generate_secure_token_on
#index_nested_attribute_errors (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 363
singleton_class.attr_accessor :index_nested_attribute_errors
#lazily_load_schema_cache (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 192
singleton_class.attr_accessor :lazily_load_schema_cache
#maintain_test_schema (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 381
singleton_class.attr_accessor :maintain_test_schema
#message_verifiers (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 613
singleton_class.attr_accessor :
#migration_strategy (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 466
singleton_class.attr_accessor :migration_strategy
#permanent_connection_checkout (readonly)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 353
singleton_class.attr_reader :permanent_connection_checkout
#protected_environments (readonly)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 199
singleton_class.attr_reader :protected_environments
#protocol_adapters (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 599
singleton_class.attr_accessor :protocol_adapters
#query_transformers (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 517
singleton_class.attr_accessor :query_transformers
#queues (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 378
singleton_class.attr_accessor :queues
#raise_int_wider_than_64bit (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 532
singleton_class.attr_accessor :raise_int_wider_than_64bit
#raise_on_assign_to_attr_readonly (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 384
singleton_class.attr_accessor :raise_on_assign_to_attr_readonly
#raise_on_missing_required_finder_order_columns (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 396
singleton_class.attr_accessor :raise_on_missing_required_finder_order_columns
#reading_role (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 309
singleton_class.attr_accessor :reading_role
#run_after_transaction_callbacks_in_order_defined (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 393
singleton_class.attr_accessor :run_after_transaction_callbacks_in_order_defined
#schema_format (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 437
singleton_class.attr_accessor :schema_format
#schema_ignored_tables (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 235
singleton_class.attr_accessor :schema_ignored_tables
#schema_versions_formatter (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 472
singleton_class.attr_accessor :schema_versions_formatter
#shuffle_unordered_selects (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 415
singleton_class.attr_accessor :shuffle_unordered_selects
#timestamped_migrations (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 451
singleton_class.attr_accessor :
#use_yaml_unsafe_load (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 524
singleton_class.attr_accessor :use_yaml_unsafe_load
#validate_migration_timestamps (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 459
singleton_class.attr_accessor :
#verbose_query_logs (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 371
singleton_class.attr_accessor :verbose_query_logs
#verify_foreign_keys_for_fixtures (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 514
singleton_class.attr_accessor :verify_foreign_keys_for_fixtures
#writing_role (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 306
singleton_class.attr_accessor :writing_role
#yaml_column_permitted_classes (rw)
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 539
singleton_class.attr_accessor :yaml_column_permitted_classes
Instance Method Details
#schema_cache_ignored_table?
[ GitHub ]# File 'activerecord/lib/active_record.rb', line 243
singleton_class.alias_method :schema_cache_ignored_table?, :schema_ignored_table?