大家好,我有这个迁移?我想表体的字符串最多1000个字符。我认为字符串中字符的默认值是255。我希望你能帮助我,因为我需要输入700多个字符串。谢谢大家
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('body');
$table->string('editedby');
$table->timestamps();
});
}
2条答案
按热度按时间5kgi1eie1#
您可以使用
longText
longText
方法创建一个LONGTEXT
等效列:参考:www.example.comhttps://laravel.com/docs/8.x/migrations#column-method-longText
u7up0aaq2#
参考:https://laravel.com/docs/8.x/migrations#column-method-string