class method
self.dump_schemas
Ruby on Rails 6.1.7.10
Since v5.2.8.1 Last seen in v6.1.7.10Specifies 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.
Source
# File activerecord/lib/active_record/core.rb, line 116
mattr_accessor :dump_schemas, instance_writer: false, default: :schema_search_path
Defined in activerecord/lib/active_record/core.rb line 116
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Core