gpt4 book ai didi

erlang - 使用chicagoboss向模型添加外键?

转载 作者:行者123 更新时间:2023-12-02 05:46:33 25 4
gpt4 key购买 nike

我是 erlang 和 Chicago boss 的新手。我遵循了Chicago boss API 文档。我之前一直在使用 Python 和 Django。现在在芝加哥老板我们可以在模型中添加外键吗?

这是我的模型。

模型:anatomy.erl

-module(anatomy, [Id,
UID,
Name,
Property,
Ratio::float(),
Value::integer(),
Pieces::float(),
Status]).
-compile(export_all).

还有另一种型号。

模型:species.erl

-module(species, [Id,
UID,
Name,
Property,
Anatomy,
Morphology
Gender]).
-compile(export_all).

我必须将 Anatomy 添加为 species 表中的外键。

最佳答案

模型: anatomy.erl

-module(anatomy, [Id,
UID,
Name,
Property,
Ratio::float(),
Value::integer(),
Pieces::float(),
Status]).
-has({species,many}).
-compile(export_all).

模型:species.erl

-module(species, [Id,
UID,
Name,
Property,
AnatomyId,
Morphology
Gender]).
-belongs_to(anatomy).
-compile(export_all).

关于erlang - 使用chicagoboss向模型添加外键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24628365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com