First, thanks for posting on the group. Every input is valuable to me.
There's currently no facility for doing this, no. IDs are currently
treated separately from the other columns in the table. I can add it
in the next release (0.7), which will also include full manual
migrations support. I'd also like to eventually allow alternate names
than "id", and may find time to work that in as well. The next release
will be within a week.
As a workaround for the time being, you can adjust any references to
this record's ID on foreign records.
For example, if your record is a person, update the "person_id" on the
foreign records so it matches. You can accomplish this manually or by
reassigning the association and saving:
//example one
foreignObj.person_id =
person.id;
foreignObj.save();
//example two
foreignObj.person = person;
foreignObj.save();