Skip to content

Commit

Permalink
Added Payment DB Seeder update #minor
Browse files Browse the repository at this point in the history
  • Loading branch information
server committed Jun 21, 2022
1 parent 2c28b73 commit 4536c6a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Controllers/UpdateController.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,14 @@ private function migrateAndSeedUpdate()

// Update database seeds
// Update adminui navigation seeds
$this->addOutput("Running DB navigation seed");
$this->addOutput("Running AdminUI seeders");
Artisan::call('db:seed', [
'--class' => 'AdminUI\AdminUI\Database\Seeds\NavigationTableSeeder',
'--class' => 'AdminUI\AdminUI\Database\Seeds\DatabaseSeederUpdate',
'--force' => true
]);
$this->addOutput("Output:", true);

// Frontend site specific seeds
if (file_exists(base_path('database/seeders/AdminUIUpdateSeeder.php'))) {
$this->addOutput("Running DB update seed");
Artisan::call('db:seed', [
Expand Down

0 comments on commit 4536c6a

Please sign in to comment.