Skip to content

Commit 34de296

Browse files
authored
Merge pull request #136 from CasperLaiTW/laravel-6.0-7.0
Support laravel 7.0
2 parents b8450c3 + a1bcac7 commit 34de296

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
],
1111
"require": {
12-
"laravel/framework": "^5.5"
12+
"laravel/framework": "^5.5|~6.0|~7.0"
1313
},
1414
"autoload": {
1515
"psr-4": {
@@ -22,7 +22,6 @@
2222
}
2323
},
2424
"require-dev": {
25-
"laravel/framework": "^5.5",
2625
"mockery/mockery": "^1.2",
2726
"phpunit/phpunit": "~8.0",
2827
"orchestra/testbench": "^3.7",

migrations/2020_04_04_000000_create_user_follower_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ public function up()
3333
*/
3434
public function down()
3535
{
36-
Schema::dropIfExists(config('follow.followings_table'));
36+
Schema::dropIfExists(config('follow.followings_table', 'user_follower'));
3737
}
3838
}

0 commit comments

Comments
 (0)