Is it possible to link between two different databases in one Migration? I'm using Postgres.
What I have:
$table->integer('id_cliente_produto')->unsigned();
$table->foreign('id_cliente_produto')->references('id_cliente_produto')->on('clienteproduto');
I need something like:
$table->integer('id_cliente_produto')->unsigned();
$table>foreign('id_cliente_produto')>references('id_cliente_produto')->on('Banco2.tabela');