Skip to content

Commit

Permalink
Merge pull request #77 from orangehrm/php-7.4
Browse files Browse the repository at this point in the history
PHP 7.4 compatibility issue fix
  • Loading branch information
j0k3r authored Jun 8, 2020
2 parents d6c2c67 + 2fc1122 commit 735c427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/Export/Mysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ public function createSequence($sequenceName, $start = 1, array $options = array
try {
$query = 'CREATE TABLE ' . $sequenceName
. ' (' . $seqcolName . ' BIGINT NOT NULL AUTO_INCREMENT, PRIMARY KEY ('
. $seqcolName . ')) ' . implode($optionsStrings, ' ');
. $seqcolName . ')) ' . implode(' ', $optionsStrings);

$res = $this->conn->exec($query);
} catch(Doctrine_Connection_Exception $e) {
Expand Down

0 comments on commit 735c427

Please sign in to comment.