laravel数据库migrate后修改数据表字段信息
composer require doctrine/dbal
php artisan make:migration alter_tablename_table --table=tablename
Schema::table('users', function (Blueprint $table) { $table->string('name', 50)->nullable()->change(); })
php artisan migrate