<?php use Doctrine\ORM\Mapping as ORM; #[ORM\Entity] #[ORM\Table(name: "ecommerce_order", options: ["charset"=>"utf8","collate"=>"utf8_unicode_ci"])] #[ORM\ChangeTrackingPolicy("DEFERRED_IMPLICIT")] class EcommerceOrder { #[ORM\Id] #[ORM\Column(type: "integer")] #[ORM\GeneratedValue(strategy: "AUTO")] private $id; #[ORM\Column(type: "timestamp", length: 255, nullable: true)] private $ordered_at; #