-class NoteComment < ActiveRecord::Base
- belongs_to :note, :foreign_key => :note_id, :touch => true
- belongs_to :author, :class_name => "User", :foreign_key => :author_id
+class NoteComment < ApplicationRecord
+ belongs_to :note, :touch => true
+ belongs_to :author, :class_name => "User", :optional => true