Skip to content

Commit 2cc2530

Browse files
authored
Update 2020_04_17_155932_add_role_id_to_users.php
1 parent 24b3f20 commit 2cc2530

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Database/migrations/2020_04_17_155932_add_role_id_to_users.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function up()
3030
public function down()
3131
{
3232
Schema::table('users', function (Blueprint $table) {
33-
$table->dropForeign('role_id');
33+
$table->dropForeign(['role_id']);
3434
$table->dropColumn('role_id');
3535
});
3636
}

0 commit comments

Comments
 (0)