installEntitySchema('node'); $this->installConfig(['node']); $this->installSchema('node', ['node_access']); $this->installSchema('system', ['sequences']); // Create a new user which needs to have UID 1, because that is expected by // the assertions from // \Drupal\migrate_drupal\Tests\d6\MigrateNodeRevisionTest. User::create([ 'uid' => 1, 'name' => $this->randomMachineName(), 'status' => 1, ])->enforceIsNew()->save(); $this->migrateUsers(FALSE); $this->migrateFields(); $this->executeMigration('d6_node_settings'); } }