1

我有一个名为“任务”的对象,每个任务都有一个类型。在我没有 ORM 的数据库设计中,我将有一个名为 TaskTypes 的表,而 Task 表将具有我们定义 Tasks 的 TaskTypes 表的外键。

有没有办法在 jugglingdb 中本地处理这种行为?还是我必须创建另一个名为 TaskTypes 的模型并使 Task“belongTo”成为 TaskType 类?

4

1 回答 1

0

The "native" way to handle this would be to define each model.

You can take a slight shortcut with Task.belongsTo('tasktype'); which will add the column tasktypeId for you.

于 2013-07-09T16:16:29.250 回答