0 / 60 seg.

Given this code, which statement about the database table "documents" could be expected to be true?

class Document < ActiveRecord::Base
  belongs_to :documentable, polymorphic: true
end
class Product < ActiveRecord::Base
  has_many :documents, as: :documentable
end
class Service < ActiveRecord::Base
  has_many :documents, as: :documentable
end