Skip to content

Commit

Permalink
Merge pull request #8 from coralsio/fix_utility_seeder
Browse files Browse the repository at this point in the history
add Utility seeder to run in Coral Seeder
  • Loading branch information
saeed-corals authored Dec 13, 2023
2 parents 09ea7df + dfb4af6 commit 96921b6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Corals/core/Foundation/database/seeds/CoralDatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use Corals\Settings\database\seeds\SettingsTableSeeder;
use Corals\Settings\Facades\Modules;
use Corals\User\database\seeds\UsersDatabaseSeeder;
use Corals\Utility\database\seeds\UtilityDatabaseSeeder;
use Illuminate\Database\Seeder;

class CoralDatabaseSeeder extends Seeder
Expand All @@ -22,6 +23,7 @@ public function run()
$this->call(SettingsTableSeeder::class);
$this->call(UsersDatabaseSeeder::class);
$this->call(MenusTableSeeder::class);
$this->call(UtilityDatabaseSeeder::class);

Modules::grantSuperuserRoleFullAccess();
}
Expand Down

0 comments on commit 96921b6

Please sign in to comment.