Skip to content

Commit 8f23242

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents 6217a72 + dbc688a commit 8f23242

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/migrations/2025_11_28_175733_add_link_colors_to_settings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ public function up(): void
1717
Schema::table('settings', function (Blueprint $table) {
1818
$table->string('link_dark_color')->after('header_color')->nullable()->default(null);
1919
$table->string('link_light_color')->after('header_color')->nullable()->default(null);
20-
$table->string('nav_link_color')->after('header_color')->nullable()->default(null);
20+
$table->string('nav_link_color')->after('header_color')->nullable()->default('#ffffff');
2121
});
2222

2323
Schema::table('users', function (Blueprint $table) {
2424
$table->string('link_dark_color')->after('skin')->nullable()->default(null);
2525
$table->string('link_light_color')->after('skin')->nullable()->default(null);
26-
$table->string('nav_link_color')->after('skin')->nullable()->default(null);
26+
$table->string('nav_link_color')->after('skin')->nullable()->default('#ffffff');
2727
});
2828

2929

0 commit comments

Comments
 (0)