From: Denitz <197527+Denitz@users.noreply.github.com> Date: Tue, 25 Feb 2025 11:22:46 +0000 (+0300) Subject: Update table-structure.php X-Git-Tag: v5.0.0~144 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=708a4e94942a1bacd3e195b3c5434e9a7b529326;p=adminer.git Update table-structure.php --- diff --git a/plugins/table-structure.php b/plugins/table-structure.php index 3e9fd35f..1db0b0d6 100644 --- a/plugins/table-structure.php +++ b/plugins/table-structure.php @@ -15,12 +15,12 @@ class AdminerTableStructure { function tableStructurePrint($fields) { echo "
| " . lang('Column') . " | " . lang('Type') . " | " . lang('Nullable') . " | " . lang('Default') . (support("comment") ? " | " . lang('Comment') : "") . " | |
|---|---|---|---|---|---|
| " . lang('Column') . " | " . lang('Type') . " | " . lang('Collation') . " | " . lang('Nullable') . " | " . lang('Default') . (support("comment") ? " | " . lang('Comment') : "") . " |
| " . h($field["field"]) . ($field["primary"] ? " (PRIMARY)" : ""); echo " | " . h($field["full_type"]) . ""; echo ($field["auto_increment"] ? " " . lang('Auto Increment') . "" : ""); - echo ($field["collation"] ? " " . h($field["collation"]) . "" : ""); + echo " | " . ($field["collation"] ? " " . h($field["collation"]) . "" : ""); echo " | " . ($field["null"] ? lang('Yes') : lang('No')); echo " | " . h($field["default"]); echo (support("comment") ? " | " . h($field["comment"]) : ""); |