Merge pull request #3100 from LEstradioto/fix-unique-constraint-error-on-dev-env

fix unique constraint error on dev env
This commit is contained in:
Andras Bacsai 2024-08-16 10:44:14 +02:00 committed by GitHub
commit 0139c4e404
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,6 +12,7 @@ class StandaloneDockerSeeder extends Seeder
*/ */
public function run(): void public function run(): void
{ {
if (StandaloneDocker::find(0) == null) {
StandaloneDocker::create([ StandaloneDocker::create([
'id' => 0, 'id' => 0,
'name' => 'Standalone Docker 1', 'name' => 'Standalone Docker 1',
@ -19,4 +20,5 @@ public function run(): void
'server_id' => 0, 'server_id' => 0,
]); ]);
} }
}
} }