5 lines
140 B
Ruby
5 lines
140 B
Ruby
class Collection < ApplicationRecord
|
|
has_many :articles
|
|
belongs_to :user, optional: true
|
|
belongs_to :organization, optional: true
|
|
end
|