Skip to content

Commit

Permalink
Fixing tests so custom URIs in other tests no longer break us.
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Jan 22, 2020
1 parent 8b1358f commit 4b8fb33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Config/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ class Database extends \CodeIgniter\Database\Config
'hostname' => '127.0.0.1',
'username' => '',
'password' => '',
'database' => '',
'DBDriver' => '',
'DBPrefix' => 'db_', // Needed to ensure we're working correctly with prefixes live. DO NOT REMOVE.
'database' => ':memory:',
'DBDriver' => 'SQLite3',
'DBPrefix' => 'db_', // Needed to ensure we're working correctly with prefixes live. DO NOT REMOVE FOR CI DEVS
'pConnect' => false,
'DBDebug' => (ENVIRONMENT !== 'production'),
'cacheOn' => false,
Expand Down

1 comment on commit 4b8fb33

@AlifArnado
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why connection using sql sever from framework 4 -> build on codeigniter

Please sign in to comment.