Laravel 8:Migrations我怎样才能添加超过1k字符的字符串?

gorkyyrv  于 2023-03-04  发布在  其他
关注(0)|答案(2)|浏览(128)

大家好,我有这个迁移?我想表体的字符串最多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();
    });
}
5kgi1eie

5kgi1eie1#

您可以使用longText

$table->longText('body');

longText方法创建一个LONGTEXT等效列:
参考:www.example.comhttps://laravel.com/docs/8.x/migrations#column-method-longText

u7up0aaq

u7up0aaq2#

$table->string('name', 1000);

参考:https://laravel.com/docs/8.x/migrations#column-method-string

相关问题