0

I have a table who's PK is the tuple: (user_id, sotry_id).

how do i define that in Cakephp?

thank, Boris.

4

2 回答 2

2

我相信 cakephp 不支持标准的复合主键:

CakePHP 的多主键问题

尽管该页面确实链接到使用替代的建议解决方法exists(但我必须承认我没有尝试过!)。

于 2013-10-10T17:11:20.307 回答
0

没用过cakephp,不过答案应该很简单:

http://book.cakephp.org/2.0/en/models/model-attributes.html

    class Example extends AppModel {
    public $primaryKey = 'example_id'; // example_id is the field name in the database
}
于 2013-10-10T17:00:31.033 回答