Skip to content

Commit

Permalink
add Utility seeder to run in Coral Seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
moayad943 committed Dec 13, 2023
1 parent 09ea7df commit dfb4af6
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 dfb4af6

Please sign in to comment.