I have a mysql view and I am using it as an entity inside my project. But when generating a migration it tries to create a table. Is there a way to tell symfony to ignore that entity when generating a new migration?
/**
* @ORM\Entity
* @ORM\Table(name="mysql_view_table")
*/
class MysqlViewTable {}