rating/spec/support/models/category.rb

7 lines
116 B
Ruby
Raw Normal View History

2017-11-02 16:55:46 -02:00
# frozen_string_literal: true
class Category < ::ActiveRecord::Base
2018-02-08 20:44:39 -02:00
belongs_to :article
2018-03-05 20:26:50 -03:00
belongs_to :global
2017-11-02 16:55:46 -02:00
end