1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-06 14:46:36 +02:00

PostgreSQL: Allow renaming inherited tables

This commit is contained in:
Jakub Vrana
2025-04-14 16:03:27 +02:00
parent 460a24ea2d
commit f5b42eae55

View File

@@ -195,7 +195,7 @@ class Adminer {
$is_view = is_view($tableStatus);
if ($is_view) {
$links["view"] = lang('Alter view');
} elseif (!driver()->inheritsFrom($name)) {
} else {
$links["create"] = lang('Alter table');
}
}