【发布时间】:2021-09-04 18:41:39
【问题描述】:
大家好,我有这个迁移吗?我希望表体的字符串最多 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();
});
}
【问题讨论】:
标签: laravel eloquent migration laravel-8