DatabaseMigrations and LazilyRefreshDatabase traits clash
use \Illuminate\Foundation\Testing\DatabaseMigrations;
use \Illuminate\Foundation\Testing\LazilyRefreshDatabase;
I used to be able to add these 2 traits together, but in L10, they now clash because both provides refreshTestDatabase(). Which one should I use and when?