Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/database/Postgres12.php')
-rw-r--r--src/database/Postgres12.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/database/Postgres12.php b/src/database/Postgres12.php
new file mode 100644
index 00000000..9329caf3
--- /dev/null
+++ b/src/database/Postgres12.php
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * PHPPgAdmin v6.0.0-RC2
+ */
+
+namespace PHPPgAdmin\Database;
+
+/**
+ * @file
+ * PostgreSQL 12.x support
+ */
+/**
+ * Class to add support for Postgres12.
+ */
+class Postgres12 extends Postgres11
+{
+ public $major_version = 12;
+}