mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-13 08:34:49 +08:00
7 lines
157 B
Ruby
7 lines
157 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StepResult < ApplicationRecord
|
|
belongs_to :result
|
|
belongs_to :step
|
|
belongs_to :created_by, class_name: 'User'
|
|
end
|