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
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -75,7 +75,7 @@ protected function createColumsSql($tablename, $schema) { ...@@ -75,7 +75,7 @@ protected function createColumsSql($tablename, $schema) {
// Process keys. // Process keys.
if (!empty($schema['primary key'])) { 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); return implode(", \n", $sql_array);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment