From: Jakub Vrana Date: Thu, 27 Feb 2025 08:41:31 +0000 (+0100) Subject: PostgreSQL: Display ENUM types X-Git-Tag: v5.0.0~97 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=26d1e5191631cbb104c8c2cea36d76e28667cb66;p=adminer.git PostgreSQL: Display ENUM types --- diff --git a/adminer/type.inc.php b/adminer/type.inc.php index 5e418acc..3cc3406a 100644 --- a/adminer/type.inc.php +++ b/adminer/type.inc.php @@ -22,6 +22,10 @@ if (!$row) {

ENUM (" . h($enums) . ")\n

"; + } echo "" . confirm(lang('Drop %s?', $TYPE)) . "\n"; } else { echo lang('Name') . ": \n"; diff --git a/changes.txt b/changes.txt index 7b742a5d..bf57efc0 100644 --- a/changes.txt +++ b/changes.txt @@ -1,6 +1,7 @@ Adminer dev: PostgreSQL: Do not alter indexes with expressions PostgreSQL: Fix export of indexes with expressions (bug #768) +PostgreSQL: Display ENUM types PostgreSQL: Export ENUM types (bug #587) SQLite: Support CHECK constraint SQLite: Add command Check tables