Skip to content

Commit

Permalink
Update example objects to keep default table name (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker authored Apr 11, 2022
1 parent b59393b commit 8970ae1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ use Gesdinet\JWTRefreshTokenBundle\Entity\RefreshToken as BaseRefreshToken;
/**
* @ORM\Entity
* @ORM\Table("refresh_tokens")
*/
class RefreshToken extends BaseRefreshToken
{
Expand All @@ -119,7 +120,7 @@ use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
use Gesdinet\JWTRefreshTokenBundle\Document\RefreshToken as BaseRefreshToken;
/**
* @ODM\Document
* @ODM\Document(collection="refresh_tokens")
*/
class RefreshToken extends BaseRefreshToken
{
Expand Down

0 comments on commit 8970ae1

Please sign in to comment.