On Monday I inserted a new migrate into a project where a new table was created.
After running the commands in the local environment and everything works, I upgraded the git from the production server and circled PHP ARTISAN MIGRATE as usual.
It turns out that in one of my tables, most of the data disappeared (it was an account table, with about 700 records).
The result of the migrate in the shell was expected, it appends the insertion of the new table and no error or information that something would have happened to the table "accounts".
Has anyone ever had this error? Fixed a solution?