831be98f9a
6ed1ba472e
fb160f6e7d
1 2
3 4
5 6 7 8 9 10 11 12
13
# frozen_string_literal: true class Tyre < ActiveRecord::Base belongs_to :car def self.custom_find(id) find(id) end def self.custom_find_by(*args) find_by(*args) end end