I'm using Phinx for databse migrations.
It's not workig with PostgreSQL schemas in my case (example test.table).
// create the table
$table = $this->table('test.table');
$table->addColumn('test', 'integer')
->create();
When i hit phinx migrate
it causes an arror. Is there any solutions for that?
My error is:
The error is: Syntax error or within "."
Does Phinx supports dot notation in the table
method?