Is there any way to change an inheriting entity's type (in the DB) to a different entity type?
Is there any way to change an inheriting entity's type (in the DB) to a different entity type?
Convert entity with uid from OldType to NewType:
await em.update(OldType, { uid: uid }, {[entityTypeColumnName]: 'NewType'})