Skip to content

Rails 7.1 composite key support #1018

@freibuis

Description

@freibuis

using rails 7.1 with composite + freindly_id will give the following error

extend FriendlyId
friendly_id :name, use: :slugged
`scope_for_slug_generator': ["column_one", "column_two"] is not a symbol nor a string (TypeError)
scope.where(self.class.base_class.arel_table[primary_key_name].not_eq(send(primary_key_name)))

normally the

primary_key_name = self.class.primary_key

would return a string but with composite keys it will return an array.

so above example is

self.class.primary_key  
 ["column_one", "column_two"]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions