coolify/database/seeders/DatabaseSeeder.php

36 lines
1 KiB
PHP
Raw Permalink Normal View History

2023-03-17 14:33:48 +00:00
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
public function run(): void
{
2023-03-28 10:09:34 +00:00
$this->call([
2023-04-25 07:38:05 +00:00
InstanceSettingsSeeder::class,
2023-03-28 10:09:34 +00:00
UserSeeder::class,
TeamSeeder::class,
PrivateKeySeeder::class,
2024-09-16 17:34:46 +00:00
PopulateSshKeysDirectorySeeder::class,
2023-03-28 10:09:34 +00:00
ServerSeeder::class,
2023-03-30 19:15:25 +00:00
ServerSettingSeeder::class,
2023-03-28 10:09:34 +00:00
ProjectSeeder::class,
StandaloneDockerSeeder::class,
GithubAppSeeder::class,
GitlabAppSeeder::class,
ApplicationSeeder::class,
2023-03-28 13:47:37 +00:00
ApplicationSettingsSeeder::class,
2023-04-04 13:25:42 +00:00
LocalPersistentVolumeSeeder::class,
2023-08-07 13:31:42 +00:00
S3StorageSeeder::class,
2023-08-07 20:14:21 +00:00
StandalonePostgresqlSeeder::class,
OauthSettingSeeder::class,
DisableTwoStepConfirmationSeeder::class,
2024-10-15 13:43:53 +00:00
SentinelSeeder::class,
CaSslCertSeeder::class,
PersonalAccessTokenSeeder::class,
2023-03-28 10:09:34 +00:00
]);
2023-03-17 14:33:48 +00:00
}
2023-08-07 20:14:21 +00:00
}