the browser-facing portion of osu!

Index lookup columns

nanaya bf7357e0 ae57a05f

+1
+1
database/migrations/2024_07_09_074020_create_daily_challenge_user_stats.php
··· 24 24 $table->unsignedMediumInteger('top_50p_placements')->default(0); 25 25 $table->timestamp('last_weekly_streak')->useCurrent(); 26 26 $table->timestamp('last_update')->useCurrent()->useCurrentOnUpdate(); 27 + $table->index(['last_weekly_streak', 'last_update']); 27 28 }); 28 29 } 29 30