Comment 9 for bug 1511466

Revision history for this message
Saverio Proto (zioproto) wrote : Re: migrate flavor data impossible

The solution from Axel Vanzaghi worked also for me.

However to delete the rows I had to disable FOREIGN_KEY_CHECKS

SET FOREIGN_KEY_CHECKS=0;
delete from instances where vm_state='deleted';
SET FOREIGN_KEY_CHECKS=1;

If anyone has a more clean solution for this, please share :)

Saverio