Skip to content

Commit

Permalink
change string method from logtext to varchar(255)
Browse files Browse the repository at this point in the history
  • Loading branch information
BMTmohammedtaha committed Sep 28, 2023
1 parent 2f05651 commit 2e1b082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Structure/TableTrait/TableStringTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ trait TableStringTrait
*/
public function string(string $column_name): self
{
return $this->longText($column_name);
return $this->varchar($column_name)->size(255);
}

/**
Expand Down

0 comments on commit 2e1b082

Please sign in to comment.