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,11 +12,13 @@ class StandaloneDockerSeeder extends Seeder
*/
public function run(): void
{
StandaloneDocker::create([
'id' => 0,
'name' => 'Standalone Docker 1',
'network' => 'coolify',
'server_id' => 0,
]);
if (StandaloneDocker::find(0) == null) {
StandaloneDocker::create([
'id' => 0,
'name' => 'Standalone Docker 1',
'network' => 'coolify',
'server_id' => 0,
]);
}
}
}