I began to start phalcon framework recently. This framework is awesome! But, I have a quiestion about ORM. How can I truly delete a record that has set softdelete?
Ha, that's a good question. Maybe try directly with PHQL? (or SQL)
Hmm... ORM Do not have "forcedelete" function? I think I ought to implement the forcedelete.
In your model, set up the delete() function to just do a soft delete. Then you can add an actualDelete() function that calls parent::delete().
actualDelete()
parent::delete()
Thankyou! I deceide that use this solution.