installEntitySchema('user'); $this->installConfig(['migrate_drupal', 'system']); } /** * Loads a database fixture into the source database connection. * * @param string $path * Path to the dump file. */ protected function loadFixture($path) { $default_db = Database::getConnection()->getKey(); Database::setActiveConnection($this->sourceDatabase->getKey()); if (substr($path, -3) == '.gz') { $path = 'compress.zlib://' . $path; } require $path; Database::setActiveConnection($default_db); } }