FriendsOfCake / cakephp-upload

CakePHP: Handle file uploading sans ridiculous automagic
https://cakephp-upload.readthedocs.io/
MIT License
551 stars 255 forks source link

Associated model images are not deleting #464

Closed manish-evolt closed 7 years ago

manish-evolt commented 7 years ago

Hi I have two tables properties and propertyImages and they both have a relation. When i delete the property all the associated propertyImages records are deleted but propertyImages are not deleted. Please help

Thanks!

davidyell commented 7 years ago

My first thought would be that you'll need to enable callbacks, so the behavior can hook the delete.

In the table associations you'll need to add 'dependent' => true, 'cascadeCallbacks' => true. Read it in the book.