diff --git a/adminer/table.inc.php b/adminer/table.inc.php index 516b0bf1..021e3472 100644 --- a/adminer/table.inc.php +++ b/adminer/table.inc.php @@ -18,7 +18,7 @@ if ($fields) { echo "" . lang('Column') . "" . lang('Type') . (support("comment") ? "" . lang('Comment') : "") . "\n"; foreach ($fields as $field) { echo "" . h($field["field"]); - echo "" . h($field["full_type"]) . ($field["null"] ? " NULL" : "") . ($field["auto_increment"] ? " " . lang('Auto Increment') . "" : ""); + echo "" . h($field["full_type"]) . ($field["null"] ? " NULL" : "") . ($field["auto_increment"] ? " " . lang('Auto Increment') . "" : ""); echo (support("comment") ? "" . nbsp($field["comment"]) : ""); echo "\n"; } diff --git a/changes.txt b/changes.txt index 53a020c3..ba71092f 100644 --- a/changes.txt +++ b/changes.txt @@ -5,6 +5,7 @@ Append new index with auto index selection (bug #3282127) Bit type default value Display foreign key name in tooltip Display default column value in tooltip +Display column collation in tooltip Pagination support (Oracle) Autocomplete for big foreign keys (Editor) Display name of the referenced record in PostgreSQL (Editor)