我是二郎和芝加哥老板的新手。我遵循了芝加哥老板 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