diff options
Diffstat (limited to 'classes/database/Postgres13.php')
| -rw-r--r-- | classes/database/Postgres13.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/classes/database/Postgres13.php b/classes/database/Postgres13.php new file mode 100644 index 00000000..a0b8c90b --- /dev/null +++ b/classes/database/Postgres13.php @@ -0,0 +1,33 @@ +<?php + +/** + * PostgreSQL 13 support + * + */ + +include_once('./classes/database/Postgres.php'); + +class Postgres13 extends Postgres { + + var $major_version = 13; + + /** + * Constructor + * @param $conn The database connection + */ + function __construct($conn) { + parent::__construct($conn); + } + + // Help functions + + function getHelpPages() { + include_once('./help/PostgresDoc13.php'); + return $this->help_page; + } + + + // Capabilities + +} +?> |
