我正在尝试将外键添加到我的表中,但是当我尝试这样做时,我收到:
SQLite 不支持向现有表添加外键约束。
$this->addForeignKey('fk_user', 'tbl_data', 'id_responsable','tbl_user', 'id', 'CASCADE');
$this->createTable('tbl_data', array(
'id' => 'pk',
'name' => 'string',
'id_responsable' => 'integer',
));