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