How did the data get there? If it's something that is seeded, then it shouldn't matter. If it's input as part of entering data into your application through testing, just add and run another migration which alters the structure of the tables.
@EliyaCohen
You create another migration to alter tables.
So when you first make the table, you'll create all the fields etc.
If you want to add another column, or change a column then you create a NEW migration. If you just edit the old one then running php artisan migrate wont do anything.