Updated seed data for dev
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Contracts\Command;
|
||||
use DB;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
|
||||
/**
|
||||
@@ -25,6 +25,20 @@ class YamlExport extends Command
|
||||
exit();
|
||||
}
|
||||
|
||||
// A "preset" for exporting the base set of data
|
||||
if ($tables[0] === 'base') {
|
||||
$tables = [
|
||||
'airlines',
|
||||
'aircraft',
|
||||
'subfleets',
|
||||
'subfleet_fare',
|
||||
'subfleet_rank',
|
||||
'bids',
|
||||
'fares',
|
||||
'flights',
|
||||
];
|
||||
}
|
||||
|
||||
$export_tables = [];
|
||||
foreach ($tables as $table) {
|
||||
$export_tables[$table] = [];
|
||||
|
||||
Reference in New Issue
Block a user