我正在使用 Phinx 进行数据库迁移。
在我的情况下,它不适用于 PostgreSQL 模式(例如test.table)。
// create the table
$table = $this->table('test.table');
$table->addColumn('test', 'integer')
->create();
当我击中phinx migrate
它时,它会引起 arror。有什么解决方案吗?
我的错误是:
错误是:语法错误或在“。”内
Phinx 是否支持方法中的点表示table
法?