Change rank field from image_link to image_url for consistency

This commit is contained in:
Nabeel Shahzad
2018-03-17 12:19:26 -05:00
parent e9baf4acb5
commit 3c39aeee43
4 changed files with 6 additions and 6 deletions

View File

@@ -348,7 +348,7 @@ class Importer
{
$rank = Rank::firstOrCreate(
['name' => $row->rank],
['image_link' => $row->rankimage, 'hours'=>$row->minhours]
['image_url' => $row->rankimage, 'hours'=>$row->minhours]
);
$this->addMapping('ranks', $row->rankid, $rank->id);