summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/database/DB_forge.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/system/database/DB_forge.php b/system/database/DB_forge.php
index c5931db27..8be65e0d6 100644
--- a/system/database/DB_forge.php
+++ b/system/database/DB_forge.php
@@ -259,8 +259,8 @@ class CI_DB_forge {
// add field info into field array, but we can only do one at a time
// so we cycle through
- foreach ($field as $k => $v)
- {
+ foreach ($field as $k => $v)
+ {
$this->add_field(array($k => $field[$k]));
if (count($this->fields) == 0)
@@ -279,6 +279,7 @@ class CI_DB_forge {
}
return TRUE;
+
}
// --------------------------------------------------------------------