8 lines
162 B
Ruby
8 lines
162 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ExpertsProcedure < ApplicationRecord
|
|
belongs_to :expert
|
|
belongs_to :procedure
|
|
|
|
has_many :avis, dependent: :destroy
|
|
end
|