File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments