Test-Laravel-Migrations icon indicating copy to clipboard operation
Test-Laravel-Migrations copied to clipboard

try Migration Test

Open ahastarin opened this issue 2 years ago • 1 comments

ahastarin avatar Dec 08 '23 08:12 ahastarin

Good job. However, in task 5, your solution for updating the user table is not correct because you're checking if the users table does not exist, in this case, even if the column does not exist, it will not be added to the table. The solution is to check whether the column exists using Schema::hasColumn('table', 'column').

KaramNassar avatar Dec 12 '23 09:12 KaramNassar