2021-01-07 15:45:02 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: experts_procedures
|
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
# allow_decision_access :boolean default(FALSE), not null
|
2021-04-01 11:56:33 +02:00
|
|
|
# revoked_at :datetime
|
2021-01-07 15:45:02 +01:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# expert_id :bigint not null
|
|
|
|
# procedure_id :bigint not null
|
|
|
|
#
|
|
|
|
class ExpertsProcedure < ApplicationRecord
|
|
|
|
belongs_to :expert
|
|
|
|
belongs_to :procedure
|
2021-01-15 16:39:07 +01:00
|
|
|
|
|
|
|
has_many :avis, dependent: :destroy
|
2021-01-07 15:45:02 +01:00
|
|
|
end
|