the browser-facing portion of osu!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix migration rollbacks

nanaya c598d163 155acfb0

+4 -6
+1 -1
database/migrations/2019_08_21_104727_add_index_to_beatmapset_events.php
··· 29 29 public function down() 30 30 { 31 31 Schema::table('beatmapset_events', function (Blueprint $table) { 32 - $table->dropIndex('user_id'); 32 + $table->dropIndex(['user_id']); 33 33 }); 34 34 } 35 35 }
+1 -1
database/migrations/2020_05_15_083037_sync_structure.php
··· 447 447 */ 448 448 public function down() 449 449 { 450 - // no going back =) 450 + throw new Exception('no rolling back from this migration =)'); 451 451 } 452 452 }
+1 -1
database/migrations/2020_07_22_045416_add_timestamp_index_to_user_account_history.php
··· 28 28 */ 29 29 public function down() 30 30 { 31 - Schema::table('user_account_history', function (Blueprint $table) { 31 + Schema::table('osu_user_banhistory', function (Blueprint $table) { 32 32 $table->dropIndex(['timestamp']); 33 33 }); 34 34 }
+1 -2
database/migrations/2020_10_13_064901_add_provider_reference_to_orders.php
··· 30 30 */ 31 31 public function down() 32 32 { 33 - Schema::connection('mysql-store')('orders', function (Blueprint $table) { 33 + Schema::connection('mysql-store')->table('orders', function (Blueprint $table) { 34 34 $table->dropColumn('provider'); 35 35 $table->dropColumn('reference'); 36 - $table->dropIndex(['provider', 'reference']); 37 36 }); 38 37 } 39 38 }
-1
database/migrations/2021_08_30_153214_add_track_id_to_beatmapsets.php
··· 31 31 { 32 32 Schema::table('osu_beatmapsets', function (Blueprint $table) { 33 33 $table->dropColumn('track_id'); 34 - $table->dropIndex('track_id'); 35 34 }); 36 35 } 37 36 }