File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -36,18 +36,18 @@ public function up()
3636 public function down ()
3737 {
3838 Schema::table ('forum_threads ' , function (Blueprint $ table ) {
39- $ table ->dropIndex ('author_id ' );
40- $ table ->dropIndex ('most_recent_reply_id ' );
41- $ table ->dropIndex ('solution_reply_id ' );
39+ $ table ->dropIndex ([ 'author_id ' ] );
40+ $ table ->dropIndex ([ 'most_recent_reply_id ' ] );
41+ $ table ->dropIndex ([ 'solution_reply_id ' ] );
4242 });
4343
4444 Schema::table ('forum_replies ' , function (Blueprint $ table ) {
45- $ table ->dropIndex ('author_id ' );
46- $ table ->dropIndex ('thread_id ' );
45+ $ table ->dropIndex ([ 'author_id ' ] );
46+ $ table ->dropIndex ([ 'thread_id ' ] );
4747 });
4848
4949 Schema::table ('comments ' , function (Blueprint $ table ) {
50- $ table ->dropIndex ('author_id ' );
50+ $ table ->dropIndex ([ 'author_id ' ] );
5151 });
5252 }
5353}
You can’t perform that action at this time.
0 commit comments