method
schemas
v8.1.1 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::PostgreSQL::SchemaDumper
schemas(stream)private
No documentation available.
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_dumper.rb, line 50
def schemas(stream)
schema_names = @dump_schemas - ["public"]
if schema_names.any?
schema_names.sort.each do |name|
stream.puts " create_schema #{name.inspect}"
end
stream.puts
end
end