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
path: root/src
diff options
context:
space:
mode:
authorAmenadiel <amenadiel@gmail.com>2020-01-07 21:47:25 +0300
committerAmenadiel <amenadiel@gmail.com>2020-01-07 21:47:25 +0300
commit1575f35d6aa2fe1f45117a66be794ba9cefc5b37 (patch)
tree73348493f39c09332abd5a1dcb2fcd8a3e474387 /src
parent5e285fb4eeff78a614a293eb3b513104cd63d44c (diff)
Creating Tag v6.0.0-RC2 at 2020-01-07 - support for PG12v6.0.0-RC2
Diffstat (limited to 'src')
-rw-r--r--src/database/Postgres12.php19
-rw-r--r--src/database/Postgres13.php20
2 files changed, 39 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;
+}
diff --git a/src/database/Postgres13.php b/src/database/Postgres13.php
new file mode 100644
index 00000000..42d42212
--- /dev/null
+++ b/src/database/Postgres13.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * PHPPgAdmin v6.0.0-RC2
+ */
+
+namespace PHPPgAdmin\Database;
+
+/**
+ * @file
+ * PostgreSQL 13.x support
+ */
+/**
+ * Class to add support for Postgres13.
+ * (Which doesn't exist yet, but it's better than rejecting connections).
+ */
+class Postgres13 extends Postgres12
+{
+ public $major_version = 13;
+}