mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
941c5641b0
Since delegated_type assumes that the foreign_key ends with `_id`, `singular_id` defined by it does not work when the foreign_key does not end with `id`. This commit fixes it by taking into account `primary_key` and `foreign_key` in the options.
5 lines
112 B
Ruby
5 lines
112 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UuidComment < ActiveRecord::Base
|
|
has_one :uuid_entry, as: :entryable
|
|
end
|