Skip to content

Commit f938d51

Browse files
committed
Fix: migrations down column name
1 parent c7a9244 commit f938d51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Migrations/2015_10_10_000000_update_users_table

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class UpdateUsersTable extends Migration
2525
public function down()
2626
{
2727
Schema::table('users', function (Blueprint $table) {
28-
$table->dropColumn('role');
28+
$table->dropColumn('role_id');
2929
});
3030
}
3131
}

0 commit comments

Comments
 (0)