Skip to content

Commit

Permalink
Merge branch 'vipin-shrivastava-master' into 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanjeev Papnoi committed Oct 27, 2021
2 parents 7b90478 + 837af99 commit 401105f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Entity/Article.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Article

/**
* @var string
* @ORM\Column(type="string", length=255, nullable=true, name="meta_description")
* @ORM\Column(type="text", length=2000, nullable=true, name="meta_description")
*/
private $metaDescription;

Expand Down
4 changes: 2 additions & 2 deletions Entity/KnowledgebaseWebsite.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ class KnowledgebaseWebsite

/**
* @var string
* @ORM\Column(type="string", length=255, name="meta_description", nullable=true)
* @ORM\Column(type="text", length=2000, name="meta_description", nullable=true)
*/
private $metaDescription;
/**
* @var string
* @ORM\Column(type="string", length=255, name="meta_keywords", nullable=true)
* @ORM\Column(type="text", length=2000, name="meta_keywords", nullable=true)
*/
private $metaKeywords;
/**
Expand Down

0 comments on commit 401105f

Please sign in to comment.