mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 11:47:41 +00:00
5 lines
111 B
Ruby
5 lines
111 B
Ruby
class Oyster < ApplicationRecord
|
|
belongs_to :run
|
|
scope :run_id, -> (id) { where run_id: id.to_i }
|
|
end
|