Skip to content

Commit f958725

Browse files
committed
Merge pull request #37 from justutiz/patch-1
Fix: migrations down column name
2 parents b766927 + f938d51 commit f958725

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)