method

tables

rails latest stable - Class: ActiveRecord::ConnectionAdapters::PostgreSQL::SchemaDumper

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

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