Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
fix sqlite configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
patkon committed Sep 22, 2021
1 parent b75e870 commit c12537b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions database.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@
]);

$db_user = new Medoo([
'database' => 'sqlite',
'type' => 'sqlite',
'database' => USER_DB
]);

$db_statistics = new Medoo([
'database' => 'sqlite',
'type' => 'sqlite',
'database' => STATS_DB
]);
$db_posts = new Medoo([
'database' => 'sqlite',
'type' => 'sqlite',
'database' => POSTS_DB
]);

Expand Down

0 comments on commit c12537b

Please sign in to comment.