Last active
April 8, 2019 01:38
-
-
Save JiNexus/8305b52027e622e51c56f3dc9a90c97f to your computer and use it in GitHub Desktop.
Revisions
-
JiNexus revised this gist
Apr 8, 2019 . 1 changed file with 0 additions and 23 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,23 +0,0 @@ -
JiNexus revised this gist
Apr 6, 2019 . 3 changed files with 0 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,6 @@ namespace System\Entity; use Doctrine\ORM\Mapping as ORM; /** This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,6 @@ namespace System\Entity; use Doctrine\ORM\Mapping as ORM; /** This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,6 @@ namespace System\Entity; use Doctrine\ORM\Mapping as ORM; /** -
JiNexus revised this gist
Apr 6, 2019 . 2 changed files with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use Doctrine\ORM\Mapping as ORM; /** * Class UserAddress * @package System\Entity * @ORM\Entity() * @ORM\Table(name="`user_address`") This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use Doctrine\ORM\Mapping as ORM; /** * Class UserInformation * @package System\Entity * @ORM\Entity() * @ORM\Table(name="`user_information`") -
JiNexus revised this gist
Apr 6, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,9 +9,9 @@ * Class User * @package System\Entity * @ORM\Entity() * @ORM\Table(name="`user_address`") */ class UserAddress { /** * @ORM\Id() -
JiNexus revised this gist
Apr 6, 2019 . No changes.There are no files selected for viewing
-
JiNexus created this gist
Apr 6, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ <?php namespace System\Entity; use DateTime; use Doctrine\ORM\Mapping as ORM; /** * Class User * @package System\Entity * @ORM\Entity() * @ORM\Table(name="`user`") */ class User { /** * @ORM\Id() * @ORM\GeneratedValue(strategy="AUTO") * @ORM\Column(name="id", type="bigint", options={"unsigned":true}) */ private $id; ... } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ <?php namespace System\Entity; use DateTime; use Doctrine\ORM\Mapping as ORM; /** * Class User * @package System\Entity * @ORM\Entity() * @ORM\Table(name="`user_information`") */ class UserInformation { /** * @ORM\Id() * @ORM\ManyToOne(targetEntity="System\Entity\User") * @ORM\JoinColumn(name="user_id", referencedColumnName="id") */ private $user; ... } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ <?php namespace System\Entity; use DateTime; use Doctrine\ORM\Mapping as ORM; /** * Class User * @package System\Entity * @ORM\Entity() * @ORM\Table(name="`user_information`") */ class UserInformation { /** * @ORM\Id() * @ORM\OneToOne(targetEntity="System\Entity\User") * @ORM\JoinColumn(name="user_id", referencedColumnName="id") */ private $user; ... }