Skip to content

Commit bcc4b52

Browse files
committed
update
1 parent 911b123 commit bcc4b52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

database/migrations/2024_01_22_205110_create_default_settings.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ public function up(): void
1212
{
1313
// Cachet settings...
1414
rescue(fn () => $this->migrator->add('app.install_id', Str::random(40)));
15-
rescue(fn () => $this->migrator->add('app.name', 'Cachet V3'));
16-
rescue(fn () => $this->migrator->add('app.domain', <<<'ABOUT'
15+
rescue(fn () => $this->migrator->add('app.name', 'Cachet'));
16+
rescue(fn () => $this->migrator->add('app.domain'));
17+
rescue(fn () => $this->migrator->add('app.about', <<<'ABOUT'
1718
Cachet is a **beautiful** and **powerful** open-source status page system.
1819
1920
To access the [dashboard](/dashboard), use the following credentials:
@@ -22,7 +23,6 @@ public function up(): void
2223
2324
Please [consider sponsoring](https://github.com/cachethq/cachet?sponsor=1) the continued development of Cachet.
2425
ABOUT));
25-
rescue(fn () => $this->migrator->add('app.about'));
2626
rescue(fn () => $this->migrator->add('app.timezone', 'UTC'));
2727
rescue(fn () => $this->migrator->add('app.locale', 'en'));
2828
rescue(fn () => $this->migrator->add('app.incident_days', 7));

0 commit comments

Comments
 (0)