我正在使用Phinx進行數據庫遷移。Phinx - 爲php應用程序遷移數據庫 - postgreSQL架構不起作用
在我的情況下,它不適用於PostgreSQL模式(例如test.table)。
// create the table
$table = $this->table('test.table');
$table->addColumn('test', 'integer')
->create();
當我打到phinx migrate
它會導致一個錯誤。有沒有解決方案?
我的錯誤是:
的錯誤是:語法錯誤或內 「」
Phinx是否支持table
方法中的點符號?
什麼是錯誤信息? – fire
您是否按照文檔指定了pgsql適配器? http://docs.phinx.org/en/latest/configuration.html#supported-adapters –
我添加了錯誤的圖片[圖片錯誤] – bfcior