-
Since the migrations only has an "up" function and no "down" function they break when you're doing local development with this package installed, I was wondering if this was by design or an oversight and if it is by design how to deal with the migrations not being executed every time you reseed the database. I can imagine it slowing down migrations having to re-index every time, but now having this package installed means you can't do
since it breaks (the table already exists). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
We don't use |
Beta Was this translation helpful? Give feedback.
We don't use
down
migrations, you can usephp artisan migrate:fresh --seed
instead