I get a new problem with my application.
I try to make a relationships many-to-many like this : http://guides.rubyonrails.org/association_basics.html#the-has_and_belongs_to_many-association Here I use has_and_belongs_to_many to "connect" two tables : User & Pins
But I get this error when I try to count the number of pins of the user.
Showing /app/views/shared/_users_pins.html.erb where line #4 raised:
SQLite3::SQLException: no such column: pins_users.user_id: SELECT COUNT(*) FROM "pins" INNER JOIN "pins_users" ON "pins"."id" = "pins_users"."pins_id" WHERE "pins_users"."user_id" = 102
line 4 : <%= @user.pinss.count %>
(I need to use pinss instead of pins because otherwise rails search the class Pin instead of Pins, but it's so dirty :'( )
Here is my model :
class Pins < ActiveRecord::Base
attr_accessible :describe, :title, :url_img
has_and_belongs_to_many :users
end
class User < ActiveRecord::Base
attr_accessible :name, :email, :password, :password_confirmation, :team_id
has_and_belongs_to_many :pinss
end
Thank ! =)
Best.