我对 Rails 关联有疑问(开发 API)。
my_app db 中有三个表:
"tariffs":
string "title",
integer "tariff_template_id"
...
"tariff_templates":
string "title",
integer "service_type_id"
...
"field_templates":
string "title",
integer "tariff_template_id"
...
问题是:我需要在“关税”表中让每个 field_template 的关税模板 ID 等于关税模板 ID。
使用 SQL 很容易,但我猜 Rails 逻辑有点不同。
谢谢。