diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-02-15 22:32:39 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-02-15 22:32:39 +0100 |
commit | 9b6e57de3dfb3348a6cfc29890eb41dfd51d7a5c (patch) | |
tree | a7eaa2a0df729f69909275dfd34efe46c939b11f /phpBB/phpbb/db/tools/mssql.php | |
parent | 2042bfc5db2554d57934d515fe62f79a06263e05 (diff) | |
parent | 1e3175cca3296eb04e3342766aa92ec74013431c (diff) | |
download | forums-9b6e57de3dfb3348a6cfc29890eb41dfd51d7a5c.tar forums-9b6e57de3dfb3348a6cfc29890eb41dfd51d7a5c.tar.gz forums-9b6e57de3dfb3348a6cfc29890eb41dfd51d7a5c.tar.bz2 forums-9b6e57de3dfb3348a6cfc29890eb41dfd51d7a5c.tar.xz forums-9b6e57de3dfb3348a6cfc29890eb41dfd51d7a5c.zip |
Merge pull request #3394 from nickvergessen/ticket/10748-postgresql
[ticket/10748][Part2] Split postgres DB tools into it's own class
Diffstat (limited to 'phpBB/phpbb/db/tools/mssql.php')
-rw-r--r-- | phpBB/phpbb/db/tools/mssql.php | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/phpBB/phpbb/db/tools/mssql.php b/phpBB/phpbb/db/tools/mssql.php index 3a7ac6185d..6e58171040 100644 --- a/phpBB/phpbb/db/tools/mssql.php +++ b/phpBB/phpbb/db/tools/mssql.php @@ -1,35 +1,35 @@ <?php /** -* -* This file is part of the phpBB Forum Software package. -* -* @copyright (c) phpBB Limited <https://www.phpbb.com> -* @license GNU General Public License, version 2 (GPL-2.0) -* -* For full copyright and license information, please see -* the docs/CREDITS.txt file. -* -*/ + * + * This file is part of the phpBB Forum Software package. + * + * @copyright (c) phpBB Limited <https://www.phpbb.com> + * @license GNU General Public License, version 2 (GPL-2.0) + * + * For full copyright and license information, please see + * the docs/CREDITS.txt file. + * + */ namespace phpbb\db\tools; /** -* Database Tools for handling cross-db actions such as altering columns, etc. -* Currently not supported is returning SQL for creating tables. -*/ + * Database Tools for handling cross-db actions such as altering columns, etc. + * Currently not supported is returning SQL for creating tables. + */ class mssql extends tools { /** - * Is the used MS SQL Server a SQL Server 2000? - * @var bool - */ + * Is the used MS SQL Server a SQL Server 2000? + * @var bool + */ protected $is_sql_server_2000; /** - * Get the column types for every database we support - * - * @return array - */ + * Get the column types for mssql based databases + * + * @return array + */ public static function get_dbms_type_map() { return array( |