We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 end
And
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
has_many
The text was updated successfully, but these errors were encountered:
@satoryu sorry, just saw this issue. it could be easily fixed in an hour
Sorry, something went wrong.
No branches or pull requests
I created 2 models
And
But this code fails as follows:
How should I do in this case?
has_many
looks like not support HABTMhttps://github.com/german/redis_orm/blob/master/lib/redis_orm/associations/has_many.rb#L7
The text was updated successfully, but these errors were encountered: