Closed JesperFiltenborg closed 1 year ago
When i run my test the nova_settings table is not migrating.
I can also run artisan migrate --path=vendor/outl1ne/nova-settings/database/migrations --env=testing But nothing migrates.
artisan migrate --path=vendor/outl1ne/nova-settings/database/migrations --env=testing
The migrations work for the rest of the project.
My bad needed to add following in NovaServiceProvider if (Schema::hasTable('nova_settings')) { $this->novaSettings(); }
if (Schema::hasTable('nova_settings')) { $this->novaSettings(); }
When i run my test the nova_settings table is not migrating.
I can also run
artisan migrate --path=vendor/outl1ne/nova-settings/database/migrations --env=testing
But nothing migrates.The migrations work for the rest of the project.