core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php 1 location
|
@@ 289-293 (lines=5) @@
|
| 286 |
|
} |
| 287 |
|
|
| 288 |
|
// Comment |
| 289 |
|
if (isset($options['comment'])) { |
| 290 |
|
$comment = trim($options['comment'], " '"); |
| 291 |
|
|
| 292 |
|
$tableOptions[] = sprintf("COMMENT = %s ", $this->quoteStringLiteral($comment)); |
| 293 |
|
} |
| 294 |
|
|
| 295 |
|
// Row format |
| 296 |
|
if (isset($options['row_format'])) { |
core/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php 1 location
|
@@ 529-533 (lines=5) @@
|
| 526 |
|
} |
| 527 |
|
|
| 528 |
|
// Comment |
| 529 |
|
if (isset($options['comment'])) { |
| 530 |
|
$comment = trim($options['comment'], " '"); |
| 531 |
|
|
| 532 |
|
$tableOptions[] = sprintf("COMMENT = %s ", $this->quoteStringLiteral($comment)); |
| 533 |
|
} |
| 534 |
|
|
| 535 |
|
// Row format |
| 536 |
|
if (isset($options['row_format'])) { |