0
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 updated the git of the production server and ran PHP ARTISAN MIGRATE as usual.
It turns out that in one of my tables, most of the data disappeared (it was a table of accounts, with about 700 records).
The result of migrate in the shell was the expected one, appends the insertion of the new table and no error or information that something would have happened with the table "accounts".
Has anyone ever suffered from this mistake? Found a solution?