I'm moving my Symfony app from one server to another, all is working fine but DB, I extracted the database to a bd_backup.sql file and when I try to restore the database I got this error in several tables:
ERROR 1005 (HY000): Can't create table 'mydatabase.student' (errno: 121)
the method I use is though mysql console:
mysql> use mydatabase;
mysql> source bd_backup.sql;
Is there a way to solve this? greetings!