Notes posted by Vaselinessa
RSS feed![Default_avatar_30](https://www.gravatar.com/avatar/96cbd04c8b7875711d0b789df4567de8?default=http://apidock.com/images/default_avatar_30.png&size=30)
3 thanks
![Default_avatar_30](https://www.gravatar.com/avatar/96cbd04c8b7875711d0b789df4567de8?default=http://apidock.com/images/default_avatar_30.png&size=30)
0 thanks
If you try to use :id as a non-primary-key field
If you’re using this so that you can repurpose :id for another use, it gets hairy: your ActiveRecord::Base subclass will still use :id to refer to your primary key, whatever it be named.
So when you call [my obj].id = 33, 33 is set as the value of your primary key, not your :id attribute!