diff --git a/adminer/table.inc.php b/adminer/table.inc.php index eff3967e..acb210ad 100644 --- a/adminer/table.inc.php +++ b/adminer/table.inc.php @@ -14,7 +14,7 @@ if ($result) { echo "" . lang('Column') . "" . lang('Type') . "" . lang('Comment') . "\n"; while ($row = $result->fetch_assoc()) { echo "" . h($row["Field"]); - echo "" . h($row["Type"]) . ($row["Null"] == "YES" ? " NULL" : ""); + echo "" . h($row["Type"]) . ($row["Null"] == "YES" ? " NULL" : "") . ($row["Extra"] == "auto_increment" ? " " . lang('Auto Increment') . "" : ""); echo "" . nbsp($row["Comment"]); echo "\n"; }