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:
uid
OldType
NewType
await em.update(OldType, { uid: uid }, {[entityTypeColumnName]: 'NewType'})