Method: ActiveRecord#dump_schemas
- Defined in:
- activerecord/lib/active_record.rb
#dump_schemas ⇒ Object
:singleton-method: 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.
419 420 421 |
# File 'activerecord/lib/active_record.rb', line 419 def dump_schemas @dump_schemas end |