Hello there,
I've noticed that I cannot update primary key.
$robot = Robots::findFirstById(654321); $robot->setId('123456'); $robot->setName('newName'); $robot->update();
Nothing happens, update() method returns true, but nothing happens in database. If I remove the part where I set ID, or I set ID to 654321, name gets updated.
Any thoughts, @Phalcon?
Thanks!