blob: db66b5297e7fd8e97f508c78cb5f5b64f290c039 (
plain) (
tree)
|
|
# frozen_string_literal: true
class Session < ActiveRecord::Base
has_many :sections, inverse_of: :session, autosave: true, dependent: :destroy
has_many :seminars, through: :sections
end
|