我正在使用 Phinx 在 cakephp 3 中编写迁移脚本。我需要在使用迁移更新表(使用 update() 命令)时添加一个带有主键的列。但是当我运行脚本时,它创建了列但不包含主键。
$table->addColumn('book_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => true
])->addPrimaryKey('book_id');
$table->update();
谢谢