diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-01-09 19:46:14 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-01-09 19:46:14 +0100 |
commit | d2a4d6624f9e994469fff8b37af51caa5de3287c (patch) | |
tree | cba9dc545edcd24137858f7d462c4a043e568cf1 /phpBB/develop/create_schema_files.php | |
parent | d9bdd05c8065eecc99c55b827a8af575fcb08f1b (diff) | |
download | forums-d2a4d6624f9e994469fff8b37af51caa5de3287c.tar forums-d2a4d6624f9e994469fff8b37af51caa5de3287c.tar.gz forums-d2a4d6624f9e994469fff8b37af51caa5de3287c.tar.bz2 forums-d2a4d6624f9e994469fff8b37af51caa5de3287c.tar.xz forums-d2a4d6624f9e994469fff8b37af51caa5de3287c.zip |
[ticket/13307] Update mysql_upgrader.php to work without the schema_data.php
The file has been delete quite some time ago.
PHPBB3-13307
Diffstat (limited to 'phpBB/develop/create_schema_files.php')
-rw-r--r-- | phpBB/develop/create_schema_files.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index 7ef86ad7fc..60ffe04330 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -51,7 +51,6 @@ $classes = $finder->core_path('phpbb/') $db = new \phpbb\db\driver\sqlite(); $schema_generator = new \phpbb\db\migration\schema_generator($classes, new \phpbb\config\config(array()), $db, new \phpbb\db\tools($db, true), $phpbb_root_path, $phpEx, $table_prefix); $schema_data = $schema_generator->get_schema(); -$dbms_type_map = phpbb\db\tools::get_dbms_type_map(); $fp = fopen($schema_path . 'schema.json', 'wb'); fwrite($fp, json_encode($schema_data, JSON_PRETTY_PRINT)); |