Makes it possible to change the type property used for STI
Look at Single Table Inheritance for more detail
class User extends Model { static entity = 'users' static fields () { return { userId: this.attr(null) } }}
const entity: string = undefined