Feature #49060 » mysql_comments.patch
typo3/sysext/core/Classes/Database/DatabaseConnection.php | ||
---|---|---|
$this->connectDB();
|
||
}
|
||
$output = array();
|
||
$columns_res = $this->link->query('SHOW COLUMNS FROM `' . $tableName . '`');
|
||
$columns_res = $this->link->query('SHOW FULL COLUMNS FROM `' . $tableName . '`');
|
||
while ($fieldRow = $columns_res->fetch_assoc()) {
|
||
$output[$fieldRow['Field']] = $fieldRow;
|
||
}
|
typo3/sysext/install/Classes/Sql/SchemaMigrator.php | ||
---|---|---|
if ($row['Extra']) {
|
||
$field[] = $row['Extra'];
|
||
}
|
||
if ($row['Comment']) {
|
||
$field[] = "COMMENT '" . $row['Comment'] . "'";
|
||
}
|
||
return implode(' ', $field);
|
||
}
|
||