We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b78ba6 commit 1086e26Copy full SHA for 1086e26
config/database.php
@@ -36,13 +36,15 @@
36
'connections' => [
37
38
'sqlite' => [
39
+ 'url' => env('DATABASE_URL'),
40
'driver' => 'sqlite',
41
'database' => env('DB_DATABASE', database_path('database.sqlite')),
42
'prefix' => '',
43
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
44
],
45
46
'mysql' => [
47
48
'driver' => 'mysql',
49
'host' => env('DB_HOST', '127.0.0.1'),
50
'port' => env('DB_PORT', '3306'),
@@ -62,6 +64,7 @@
62
64
63
65
66
'pgsql' => [
67
68
'driver' => 'pgsql',
69
70
'port' => env('DB_PORT', '5432'),
@@ -76,6 +79,7 @@
76
79
77
80
78
81
'sqlsrv' => [
82
83
'driver' => 'sqlsrv',
84
'host' => env('DB_HOST', 'localhost'),
85
'port' => env('DB_PORT', '1433'),
0 commit comments