Можно ли переопределить имя столбца для встроенного?Я хочу сохранить имя столбца бонуса клиента в базе данных как customer_earnings
вместо customer_total
Api\Comerce\Domain\Expenses:
type: embeddable
embedded:
personalCommission:
class: Shared\Domain\ValueObjects\AppliedPercentage
columnPrefix: personal_
customerBonus:
attributeOverride:
value:
column: customer_earnings
class: Shared\Domain\ValueObjects\AppliedPercentage
columnPrefix: customer_
Shared\Domain\ValueObjects\AppliedPercentage:
type: embeddable
fields:
value:
type: decimal
nullable: true
precision: 7
scale: 2
column: total
percentage:
type: integer
nullable: true
options:
unsigned: false
column: percentage