9 lines
146 B
Ruby
9 lines
146 B
Ruby
class ArticleindexsContent < ApplicationRecord
|
|
belongs_to :category
|
|
|
|
has_one :portlet, :as => :content, :dependent => :destroy
|
|
|
|
|
|
|
|
end
|