Skip to content
Snippets Groups Projects
Commit 079a1bd2 authored by Angie Byron's avatar Angie Byron
Browse files

#67349 follow-up by Damien Damien Tournoud: Fix missing parenthesis.

parent c30376a5
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ protected function createColumsSql($tablename, $schema) {
// Process keys.
if (!empty($schema['primary key'])) {
$sql_array[] = " PRIMARY KEY (" . $this->createKeySql($schema['primary key']);
$sql_array[] = " PRIMARY KEY (" . $this->createKeySql($schema['primary key']) . ")";
}
return implode(", \n", $sql_array);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment