4 lines
95 B
Ruby
4 lines
95 B
Ruby
class Authorship < ActiveRecord::Base
|
|
belongs_to :author
|
|
belongs_to :post, touch: true
|
|
end
|