Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-12-13 03:01:31 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-12-13 03:01:31 +0400
commit3ee304749dd1e7e22b35109aeafa14d296b0b191 (patch)
tree77f48354880b760479a2d6f24df9f6f29078e8d6 /doctrine
parent0097fce228c978448a9aeaac988bfe731871e5c3 (diff)
Revert "Use quoted column identifier for adding comment to column"
This reverts commit 4469b54cfa19fbac36459b9465c4951114dc8094.
Diffstat (limited to 'doctrine')
-rw-r--r--doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php b/doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
index 08145012..e53b5f64 100644
--- a/doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+++ b/doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
@@ -1241,7 +1241,7 @@ abstract class AbstractPlatform
if ($this->supportsCommentOnStatement()) {
foreach ($table->getColumns() as $column) {
if ($this->getColumnComment($column)) {
- $sql[] = $this->getCommentOnColumnSQL($tableName, $column->getQuotedName($this), $this->getColumnComment($column));
+ $sql[] = $this->getCommentOnColumnSQL($tableName, $column->getName(), $this->getColumnComment($column));
}
}
}