* @since 1.0.0 */ protected static array $columns = [ 'support_ticket_id' => ['name' => 'support_ticket_id', 'type' => 'int', 'internal' => 'id'], 'support_ticket_task' => ['name' => 'support_ticket_task', 'type' => 'int', 'internal' => 'task'], ]; /** * Has one relation. * * @var array * @since 1.0.0 */ protected static array $ownsOne = [ 'task' => [ 'mapper' => TaskMapper::class, 'external' => 'support_ticket_task', ], ]; /** * Primary table. * * @var string * @since 1.0.0 */ protected static string $table = 'support_ticket'; /** * Primary field name. * * @var string * @since 1.0.0 */ protected static string $primaryField = 'support_ticket_id'; }