How strange? I have a model that has updated_at as a “magic” field in
the database. But it isn’t updating unless I update it manually.
Doing a google search, I saw someone else having a similar problem
that was using one of the acts_as_taggable plugins.
I am using acts_as_taggable_on_steroids AND betternestedset in this
model
Any suggestions would be helpful
Thanks!
–Alan
Rails 2.0.2
From schema.rb, the affected model:
create_table “tasks”, :force => true do |t|
t.string “description”
t.boolean “done”
t.datetime “created_at”
t.datetime “updated_at”
t.integer “lft”
t.integer “rgt”
t.integer “parent_id”
t.text “notes”
t.integer “user_id”
end