Displaying 2 results from an estimated 2 matches for "cat_count".
Did you mean:
callcount
2006 Apr 14
8
Error with Web Service tests after upgrading to Rails 1.1.2
Hello.
I hope this is the right place to describe my problem ?
After upgrading to Rails version 1.1.2 from rails version 1.0.0, Web
Service functional tests seem broken.
I upgraded rails (as the root user / administrator) with:
# gem update rails --include-dependencies
then I upgraded my application (as myself) with:
? rake rails:update
% rake rails:update:configs
After these steps,
2006 Jan 04
2
Updating Attributes in a HABTM Join Table
..."items". They are both
HABTM with the join table "categories_items" between them. If an item
is joined to a category once, no problem, we create the join. But if
an item is joined to a category more than once, I want to record the
subsequent hit in a field called "cat_count" which exists in the join
table.
def add_category( category_id_as_str )
category = Category.find(category_id_as_str.to_i)
if self.categories.include?(category)
old_count = self.categories.find(category.id).cat_count.to_i
self.categories.delete(category)
else
old_count = 0
end
s...