fix: root user seeder should be the last (why? no idea. we will figure it out)

version ++
This commit is contained in:
Andras Bacsai
2025-01-17 11:06:09 +01:00
parent 54d656a9da
commit 254e32a6bc
5 changed files with 26 additions and 9 deletions

View File

@@ -46,8 +46,6 @@ class ProductionSeeder extends Seeder
]);
}
$this->call(RootUserSeeder::class);
if (GithubApp::find(0) == null) {
GithubApp::create([
'id' => 0,
@@ -190,5 +188,6 @@ uZx9iFkCELtxrh31QJ68AAAAEXNhaWxANzZmZjY2ZDJlMmRkAQIDBA==
$this->call(OauthSettingSeeder::class);
$this->call(PopulateSshKeysDirectorySeeder::class);
$this->call(SentinelSeeder::class);
$this->call(RootUserSeeder::class);
}
}