Fix typo in migration classes

This commit is contained in:
FrancescoUK
2017-09-24 18:52:56 +01:00
parent 9ff7f9f212
commit 7aca0a57c5
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ class Migration_Upgrade_To_3_1_1 extends CI_Migration
foreach($sqls as $statement)
{
$statment = $statement . ";";
$statement = $statement . ';';
if(!$this->db->simple_query($statement))
{

View File

@@ -23,7 +23,7 @@ class Migration_Upgrade_To_3_2_0 extends CI_Migration
foreach($sqls as $statement)
{
$statment = $statement . ";";
$statement = $statement . ';';
if(!$this->db->simple_query($statement))
{