Skip to content

Commit

Permalink
resort attributes arguments in entities
Browse files Browse the repository at this point in the history
  • Loading branch information
berkut1 committed Sep 18, 2024
1 parent a7f16b0 commit c034444
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
use Doctrine\ORM\Mapping as ORM;

#[ORM\Table(name: "cp_solidcp_servers")]
#[ORM\Index(columns: ["id_location"], name: "cp_solidcp_servers_id_location_idx")]
#[ORM\Index(columns: ["id_enterprise_dispatcher"], name: "cp_solidcp_servers_id_enterprise_dispatcher_idx")]
#[ORM\Index(name: "cp_solidcp_servers_id_location_idx", columns: ["id_location"])]
#[ORM\Index(name: "cp_solidcp_servers_id_enterprise_dispatcher_idx", columns: ["id_enterprise_dispatcher"])]
#[ORM\Entity]
class SolidcpServer implements AggregateRoot
{
Expand Down

0 comments on commit c034444

Please sign in to comment.