summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-10-17 17:22:43 +0200
committerAndrey Andreev <narf@devilix.net>2016-10-17 17:22:43 +0200
commitda270b26d7cb9c55385150659ecfb7d2d97b4c63 (patch)
tree7a6e37f5e1b0d46bb40e2d7ff03340b10244e9bd /system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
parentc34a3d6d052d2b7ba7955ea2bc70039ce0405b68 (diff)
Fix #4851
Diffstat (limited to 'system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php')
-rw-r--r--system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php b/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
index f6f9bb481..b124bcad1 100644
--- a/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
+++ b/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
@@ -101,7 +101,7 @@ class CI_DB_pdo_sqlite_forge extends CI_DB_pdo_forge {
* @param string $db_name (ignored)
* @return bool
*/
- public function create_database($db_name = '')
+ public function create_database($db_name)
{
// In SQLite, a database is created when you connect to the database.
// We'll return TRUE so that an error isn't generated
@@ -116,7 +116,7 @@ class CI_DB_pdo_sqlite_forge extends CI_DB_pdo_forge {
* @param string $db_name (ignored)
* @return bool
*/
- public function drop_database($db_name = '')
+ public function drop_database($db_name)
{
// In SQLite, a database is dropped when we delete a file
if (file_exists($this->db->database))