Just updated to v2 (nice new features btw!). I was able to run db:seed without a problem. However, when I attempted to load the site I'm getting a ``` InvalidArgumentException Unsupported driver [mongodb] ``` Do I need to make a change somewhere else when updating? ``` php <?php // app/config/database.php return [ ... 'default' => 'mongodb', 'connections' => [ 'mongodb' => [ 'driver' => 'mongodb', 'host' => 'localhost', 'port' => 27017, 'database' => 'laravel_nuwavefit', 'username' => '', 'password' => '' ], ], ... ] ```