I searched almost everywhere, but could not find anything.
Is there a command or procedure for changing the table name (so inside the annotation of the doctrine) without losing data?
Basically, something that will create something like
RENAME TABLE old_table TO new_table;
or
ALTER TABLE old_table RENAME new_table;
MySQL commands taken from here
Should I manually write a migration file with doctrine:migrations:generate ?
source share