Skip to content

Commit

Permalink
fix database config template for sqlite3
Browse files Browse the repository at this point in the history
  • Loading branch information
tenzap committed Dec 29, 2024
1 parent 07a7888 commit 1dd6911
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@
);

$db['kalkun_sqlite3'] = array(
'dsn' => '',
'dsn' => 'sqlite:/path/to/kalkun.sqlite',
'hostname' => 'localhost',
'username' => '',
'password' => '',
'database' => 'sqlite:/path/to/kalkun.sqlite',
'database' => '',
'dbdriver' => 'pdo',
'dbprefix' => '',
'pconnect' => FALSE,
Expand Down

0 comments on commit 1dd6911

Please sign in to comment.