Hi Cory, Read does have an explicit relationship to an Article as you can see in the model. Please see the code snippet below:
class Article < ActiveRecord::Base has_many :readings end
class User < ActiveRecord::Base has_many :readings end
class Reading < ActiveRecord::Base belongs_to :article belongs_to :user end
What are you trying to accomplish within your project?
-Conrad