diff options
Diffstat (limited to 'phpBB/includes/db/postgres.php')
-rw-r--r-- | phpBB/includes/db/postgres.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/phpBB/includes/db/postgres.php b/phpBB/includes/db/postgres.php new file mode 100644 index 0000000000..dc5e95ac57 --- /dev/null +++ b/phpBB/includes/db/postgres.php @@ -0,0 +1,19 @@ +<?php +/** +* +* @package dbal +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +class dbal_postgres extends phpbb_db_driver_postgres { +} |