mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-22 17:41:24 +02:00
[ticket/11459] Move $supported_dbms to beginning of create schema file
PHPBB3-11459
This commit is contained in:
@@ -12,6 +12,15 @@
|
||||
*/
|
||||
|
||||
$schema_path = dirname(__FILE__) . '/../install/schemas/';
|
||||
$supported_dbms = array(
|
||||
'firebird',
|
||||
'mssql',
|
||||
'mysql_40',
|
||||
'mysql_41',
|
||||
'oracle',
|
||||
'postgres',
|
||||
'sqlite',
|
||||
);
|
||||
|
||||
if (!is_writable($schema_path))
|
||||
{
|
||||
@@ -39,7 +48,6 @@ $fp = fopen($schema_path . 'schema.json', 'wb');
|
||||
fwrite($fp, json_encode($schema_data, JSON_PRETTY_PRINT));
|
||||
fclose($fp);
|
||||
|
||||
$supported_dbms = array('firebird', 'mssql', 'mysql_40', 'mysql_41', 'oracle', 'postgres', 'sqlite');
|
||||
foreach ($supported_dbms as $dbms)
|
||||
{
|
||||
$fp = fopen($schema_path . $dbms . '_schema.sql', 'wb');
|
||||
|
@@ -3,4 +3,3 @@
|
||||
# To change the contents of this file, edit
|
||||
# phpBB/develop/create_schema_files.php and
|
||||
# run it.
|
||||
|
||||
|
Reference in New Issue
Block a user