Skip to content

Commit 5204a45

Browse files
committed
Merge pull request #1047 from motin/include-identifier-quoting-in-schema-xml
Include identifierQuoting in the reverse-engineered schema.xml
2 parents bab0021 + 8c583d5 commit 5204a45

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Propel/Generator/Schema/Dumper/XmlDumper.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ private function appendDatabaseNode(Database $database, \DOMNode $parentNode)
139139
$databaseNode->setAttribute('tablePrefix', $tablePrefix);
140140
}
141141

142+
if ($database->isIdentifierQuotingEnabled()) {
143+
$databaseNode->setAttribute('identifierQuoting', 'true');
144+
}
145+
142146
/*
143147
FIXME - Before we can add support for domains in the schema, we need
144148
to have a method of the Column that indicates whether the column was mapped

0 commit comments

Comments
 (0)