我为拥有超过200万条记录的表创建了迁移。迁移正在向该表中添加一个新列,如下所示。我使用流浪汉作为我的环境。
Schema::table('tb_selection', function(Blueprint $table) {
$table->tinyInteger('retired_flag')->after('display_flag')->default(0);
});
当我运行php artisan migrate
时,它会保持静止并且不执行任何操作。然后抛出错误
error: 'Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock'
然后我检查了我的数据库,它崩溃了。那里没有桌子。我不得不再次导入数据库。对此有什么解决方案?