I've my migrations at two different default location (database/migrations/tables/) and (database/migrations/foreign/) and i want to use the RefreshDatabase trait, however it uses the default migration location.
How can i specify or override at setUp or somewhere the "path" option for this migrations?
The only way that i found to do that is overriding "refreshInMemoryDatabase" and "refreshTestDatabase" methods but im thinking in a better way. Can anyone help me in this trick!
Override the
refreshTestDatabasemethod ofRefreshDatabasetrait by specifying--path=/app/database/migrations/tests. It will be the best way