-
Notifications
You must be signed in to change notification settings - Fork 16
Does not redis_orm support HABTM? #5
Copy link
Copy link
Open
Description
I created 2 models
class User < RedisOrm::Base
property :name, String
has_many :books
end
class Book < RedisOrm::Base
property :title, String
has_many :users, as: :authors
endAnd
user = User.create(name: 'Kent Beck')
user.books << Book.create(title: 'Refactoring')But this code fails as follows:
undefined method `pluralize' for :authors:Symbol
How should I do in this case?
has_many looks like not support HABTM
https://github.com/german/redis_orm/blob/master/lib/redis_orm/associations/has_many.rb#L7
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels