Ok, so I had the table "Users" which had a certain field list but then the table columns have been changed by the members of our team. The seeders and all other files are correct since I've had 2 other members test on their machines that everything works. For some reason, when trying to
php artisan migrate:refresh --seed
it gives me that error, that I'm trying to put values into the Users table and it has to be with a certain field list when it is completely different now.
To be more specific, imagine that the Users table had a name and a password. Now it has an email, name, identification_number, birth_date.
It is still seen as having only the name and the password fields.
Going to the phpMyAdmin page, I can clearly see that the table has been updated with the new columns.
Please help me out on this.