Defines the base entity for a inherited class
Look at Single Table Inheritance for more detail
class Adult extends Person { static entity = 'adult' static baseEntity = 'person' static fields () { return { ...super.fields(), job: this.attr('') } }}
const baseEntity: string = undefined