Skip to content

Commit

Permalink
Merge pull request #2 from dmitrykazak/hotfix/fix-install
Browse files Browse the repository at this point in the history
Fix install script
  • Loading branch information
dmitrykazak authored Dec 23, 2018
2 parents adaee7c + ed2ec69 commit 8125c8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
$connection->addColumn($table, 'registration_ip', 'VARCHAR(20) NULL DEFAULT NULL');
}

if (!$connection->tableColumnExists('status_update_ip')) {
if (!$connection->tableColumnExists($table, 'status_update_ip')) {
$connection->addColumn($table, 'status_update_ip', 'TINYINT(1) unsigned NOT NULL DEFAULT 0');
}

Expand Down

0 comments on commit 8125c8e

Please sign in to comment.