Files
Mattia Roccoberton 7a148c7cd1 Add specs configuration
2020-09-01 11:16:56 +02:00

10 строки
159 B
Ruby

# frozen_string_literal: true
class Profile < ApplicationRecord
belongs_to :author, inverse_of: :profile, touch: true
def to_s
description
end
end