我正在将jenssegers MongoDB驱动程序用于laravel,其他所有工作都很好。但是,当我尝试迁移模式时,它显示以下错误:
找不到驱动程序(SQL:从information_schema.tables中选择* 其中table_schema =宅基地,table_name =迁移)
public function up()
{
Schema::connection('mongodb')->create('users', function($collection)
{
$collection->index('email');
$collection->index('username');
});
}