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,
|
|
|
|
ServerSeeder::class,
|
2023-03-30 19:15:25 +00:00
|
|
|
ServerSettingSeeder::class,
|
2023-03-28 10:09:34 +00:00
|
|
|
ProjectSeeder::class,
|
|
|
|
ProjectSettingSeeder::class,
|
|
|
|
EnvironmentSeeder::class,
|
|
|
|
StandaloneDockerSeeder::class,
|
|
|
|
SwarmDockerSeeder::class,
|
|
|
|
KubernetesSeeder::class,
|
|
|
|
GithubAppSeeder::class,
|
|
|
|
GitlabAppSeeder::class,
|
|
|
|
ApplicationSeeder::class,
|
2023-03-28 13:47:37 +00:00
|
|
|
ApplicationSettingsSeeder::class,
|
2023-05-30 13:52:17 +00:00
|
|
|
ApplicationPreviewSeeder::class,
|
2023-05-04 20:29:14 +00:00
|
|
|
EnvironmentVariableSeeder::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,
|
2023-08-10 13:52:54 +00:00
|
|
|
ScheduledDatabaseBackupSeeder::class,
|
|
|
|
ScheduledDatabaseBackupExecutionSeeder::class,
|
2024-03-06 16:30:19 +00:00
|
|
|
OauthSettingSeeder::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
|
|
|
}
|