diff --git a/database/migrations/2024_01_22_205110_create_default_settings.php b/database/migrations/2024_01_22_205110_create_default_settings.php index 5f019700..b0e5c8f1 100644 --- a/database/migrations/2024_01_22_205110_create_default_settings.php +++ b/database/migrations/2024_01_22_205110_create_default_settings.php @@ -12,8 +12,9 @@ public function up(): void { // Cachet settings... rescue(fn () => $this->migrator->add('app.install_id', Str::random(40))); - rescue(fn () => $this->migrator->add('app.name', 'Cachet V3')); - rescue(fn () => $this->migrator->add('app.domain', <<<'ABOUT' + rescue(fn () => $this->migrator->add('app.name', 'Cachet')); + rescue(fn () => $this->migrator->add('app.domain')); + rescue(fn () => $this->migrator->add('app.about', <<<'ABOUT' Cachet is a **beautiful** and **powerful** open-source status page system. To access the [dashboard](/dashboard), use the following credentials: @@ -22,7 +23,6 @@ public function up(): void Please [consider sponsoring](https://github.com/cachethq/cachet?sponsor=1) the continued development of Cachet. ABOUT)); - rescue(fn () => $this->migrator->add('app.about')); rescue(fn () => $this->migrator->add('app.timezone', 'UTC')); rescue(fn () => $this->migrator->add('app.locale', 'en')); rescue(fn () => $this->migrator->add('app.incident_days', 7));