Skip to content
This repository has been archived by the owner on Nov 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #24 from ablunier/master
Browse files Browse the repository at this point in the history
Fixed AdminDivisions and AdminSubdivisions seeders
  • Loading branch information
ipalaus committed Nov 17, 2015
2 parents 7bcb6a7 + 41640f8 commit be1a9cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Seeders/AdminDivionsTableSeeder.php
Expand Up @@ -11,7 +11,7 @@ public function run()
{
$path = $this->command->option('path');

$this->importer->adminDivions('geonames_admin_divisions', $path . '/admin2Codes.txt');
$this->importer->adminDivions('geonames_admin_divisions', $path . '/admin1CodesASCII.txt');
}

}
}
4 changes: 2 additions & 2 deletions src/Seeders/AdminSubdivionsTableSeeder.php
Expand Up @@ -11,7 +11,7 @@ public function run()
{
$path = $this->command->option('path');

$this->importer->adminDivions('geonames_admin_subdivisions', $path . '/admin1CodesASCII.txt');
$this->importer->adminDivions('geonames_admin_subdivisions', $path . '/admin2Codes.txt');
}

}
}

0 comments on commit be1a9cf

Please sign in to comment.