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()
36
36
public function down ()
37
37
{
38
38
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 ' ] );
42
42
});
43
43
44
44
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 ' ] );
47
47
});
48
48
49
49
Schema::table ('comments ' , function (Blueprint $ table ) {
50
- $ table ->dropIndex ('author_id ' );
50
+ $ table ->dropIndex ([ 'author_id ' ] );
51
51
});
52
52
}
53
53
}
You can’t perform that action at this time.
0 commit comments