Reputation: 1
I want to know what is the code for default database type in Laravel.
'default' => env('DB_CONNECTION', 'mysql')
Upvotes: 0
Views: 110
Reputation: 9962
Change your .env DB_CONNECTION
variable to another type
For example for SQLite:
DB_CONNECTION=sqlite
Upvotes: 1