案例:
我
在ride_request 中有一个模型(“ride_request”)有两个字段(pickup_location,dropoff_location)
两个字段(pickup 和 dropoff)都是一个模型(location) 的实例
这是我的迁移
create_table :ride_requests do |t|
t.integer :pickup_location
t.integer :dropoff_location
问题:
当您通常使用 location_id 时,如何在拾取/丢弃字段中创建与位置的关系?