So my migrations folder looks like this since I have dozens of tables it keeps things organized and clean:
migrations/
create_user_table.php
relations/
translations/
I'm trying to do a refresh all migrations and seed but it seems like I've run into a slight hiccup where I don't know the artisan command to run migrations recursively (i.e. run migrations in the relations
and translations
folders as well).
I've tried adding --path="app/database/migrations/*"
however it spat out an error. Does anyone know the solution to this?