method
tables
v8.1.1 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::PostgreSQL::SchemaDumper
tables(stream)private
No documentation available.
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_dumper.rb, line 61
def tables(stream)
previous_schema_had_tables = false
within_each_schema do
stream.puts if previous_schema_had_tables
super
previous_schema_had_tables = @connection.tables.any?
end
end