0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravelの文字列用データ型の違い

Posted at

Laravelを使用した場合、以下の文字列の型がある。
・string型
・text型
・longText型

違いは、格納できる文字数が違う
・string型...255文字まで
・text型...16384文字まで
・longText型... 65,535バイトまで

使用例
・string型...タイトルなど短い文章の時に使用する。
・text型...本文など長い文章の時に使用する。
・longText型...text型では収まらない文字数の時に使用する。(めったに使用しないとのこと。)

参考サイト:https://biz.addisteria.com/string_text_longtext/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?