From 26d1e5191631cbb104c8c2cea36d76e28667cb66 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 27 Feb 2025 09:41:31 +0100 Subject: [PATCH] PostgreSQL: Display ENUM types --- adminer/type.inc.php | 4 ++++ changes.txt | 1 + 2 files changed, 5 insertions(+) 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