直接来步骤了:
1、首先需要安装一个包:doctrine/dbal
composer require doctrine/dbal
该包必须自己安装,laravel默认是没有安装的。
2、创建迁移文件
代码语言:javascript复制artisan make:migration modify_url_column_in_referrers_table --table=referrers
其中referrers是表名
结果
代码语言:javascript复制public function up()
{
Schema::table('referrers', function (Blueprint $table) {
$table->string('url', 2000)->comment('url')->change();
});
}