public function load_schema()
 {
     // Load the phpBB schema's
     parent::load_schema();
     $this->ensure_connected(__METHOD__);
     $directory = dirname(__FILE__) . '/../schemas/';
     $this->load_schema_from_file($directory);
 }
 private static function recreate_database($config)
 {
     $db_conn_mgr = new phpbb_database_test_connection_manager($config);
     $db_conn_mgr->recreate_db();
 }