Let\'s say that I have a model called Tweet with the following fields
@original is not a Tweet instance but an ActiveRecord::Relation
If you want to access the id of your Tweet directly you should define @original like this
@original = Tweet.find_by_id(64)
or
@original = Tweet.where(id: 64).first