manage_relationship not creating many-to-many join records
I'm having trouble getting
I have a many-to-many relationship between
- Device: Standard resource with
- Pass: Uses
- DeviceRegistration: Join table with
manage_relationship to work with a many-to-many relationship where the destination resource uses a non-standard primary key.Setup
I have a many-to-many relationship between
Device and Pass through a DeviceRegistration join table:- Device: Standard resource with
uuid_primary_key :id- Pass: Uses
uuid_primary_key :serial_number (not :id)- DeviceRegistration: Join table with
device_id and serial_number fields