rename yaml import/export

This commit is contained in:
Nabeel Shahzad
2018-03-20 16:10:52 -05:00
parent 25a299fb74
commit 9e43955fbb
3 changed files with 4 additions and 4 deletions

View File

@@ -61,8 +61,8 @@ reset: clean
reload-db:
@php artisan database:create --reset
@php artisan migrate:fresh --seed
@php artisan phpvms:import app/Database/seeds/sample.yml
@php artisan phpvms:import app/Database/seeds/acars.yml
@php artisan phpvms:yaml-import app/Database/seeds/sample.yml
@php artisan phpvms:yaml-import app/Database/seeds/acars.yml
#php artisan phpvms:navdata
.PHONY: tests

View File

@@ -13,7 +13,7 @@ use Symfony\Component\Yaml\Yaml;
*/
class YamlExport extends Command
{
protected $signature = 'phpvms:export {tables*}';
protected $signature = 'phpvms:yaml-export {tables*}';
protected $description = 'YAML table export';
/**

View File

@@ -11,7 +11,7 @@ use App\Services\DatabaseService;
*/
class YamlImport extends Command
{
protected $signature = 'phpvms:import {files*}';
protected $signature = 'phpvms:yaml-import {files*}';
protected $description = 'Developer commands';
protected $dbSvc;