# File lib/foreigner/schema_dumper.rb, line 9
    def tables_with_foreign_keys(stream)
      tables_without_foreign_keys(stream)
      @connection.tables.sort.each do |table|
        foreign_keys(table, stream)
      end
    end