I'm working on a magento module, and I have a timestamp field which I need to compare to current_timestamp, addFieldToFilter('field_name', array('gt' => 'current_timestamp')) will simply generate the following : where field_name > 'current_timestamp' which will be interpreted as a string rather than a function.
Did anyone run into this problem ? I'll be glade if you share your tips and/or solutions.
Best Regards
Edit :
I ended up doing it this way
->addFieldToFilter('field_name', array('gt' => date('Y-m-d H:i:s', time())))