Git Repository Public Repository

namibia

URLs

Copy to Clipboard

Diff Revisions 6abb42 ... vs da65b1 ... for module/Company/src/Company/Entity/Company.php

Diff revisions: vs.
  @@ -67,13 +67,13 @@
67 67
68 68 /**
69 69 * @ORM\ManyToOne(targetEntity="\Location\Entity\Region")
70 - * @ORM\JoinColumn(nullable=false, name="lib_region_id")
70 + * @ORM\JoinColumn( name="lib_region_id")
71 71 **/
72 72 protected $region;
73 73
74 74 /**
75 75 * @ORM\ManyToOne(targetEntity="\Location\Entity\Town")
76 - * @ORM\JoinColumn(nullable=false, name="lib_town_id")
76 + * @ORM\JoinColumn(name="lib_town_id")
77 77 **/
78 78 protected $city;
79 79
  @@ -105,7 +105,7 @@
105 105
106 106 /**
107 107 * @ORM\ManyToOne(targetEntity="\Location\Entity\Town")
108 - * @ORM\JoinColumn(nullable=false, nullable=true, name="auction_lib_town_id")
108 + * @ORM\JoinColumn(nullable=true, name="auction_lib_town_id")
109 109 **/
110 110 protected $auctionCity;
111 111
  @@ -122,12 +122,12 @@
122 122 /**
123 123 * @ORM\Column(type="string", length=25, name="dealer_type")
124 124 */
125 - protected $dealerType = 'Trader';
125 + protected $dealerType = 'Dealer';
126 126
127 127 /**
128 128 * @ORM\Column(type="string", length=25, name="client_type")
129 129 */
130 - protected $clientType = 'Seller';
130 + protected $clientType = 'Buyer';
131 131
132 132 /**
133 133 * @ORM\Column(type="string", length=100, nullable=true, name="company_registration_number")