mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-31 04:54:45 +02:00
Merge pull request #327 from Boy132/patch-2
Fix default sqlite database path in setup command
This commit is contained in:
commit
f61c6b9dc2
@ -98,7 +98,7 @@ class DatabaseSettingsCommand extends Command
|
|||||||
} elseif ($this->variables['DB_CONNECTION'] === 'sqlite') {
|
} elseif ($this->variables['DB_CONNECTION'] === 'sqlite') {
|
||||||
$this->variables['DB_DATABASE'] = $this->option('database') ?? $this->ask(
|
$this->variables['DB_DATABASE'] = $this->option('database') ?? $this->ask(
|
||||||
'Database Path',
|
'Database Path',
|
||||||
config('database.connections.sqlite.database', database_path('database.sqlite'))
|
config('database.connections.sqlite.database', 'database.sqlite')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user