Hello, I created a table "packs", with 3 columns: "status_package", "number_package", and "created_at". DB is sqlite. I want to update record but its not working. Can someone help :) ? ``` @pack_to_update = Pack.filter(number_package: params[:number]) @pack_to_update.update({'created_at': Time.now, 'status_package': params[:status]}) ```