[追加のアップデートとソリューション]
herokuサポートが言っていることを試しました。次のようにモデルのコンストラクターを編集しました(私の場合は、連絡先モデルを作成しました)
public function initialize(array $config)
{
parent::initialize($config);
// added "salesforce" for following table name
$this->table('salesforce.account');
$this->displayField('name');
$this->primaryKey('id');
}
andapp.phpファイル内
'schema' => 'public',
スキーマはパブリックを指します。
これはうまくいきました!