You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the inclusion of 57ae89a, dropping types is now also trying to drop types added by extensions (e.g. postgis). This is causing the database reset step of tests to fail.
SQLSTATE[2BP01]: Dependent objects still exist: 7 ERROR: cannot drop type spheroid because extension postgis requires it
Steps To Reproduce
Add protected bool $dropTypes = true; to a feature test with multiple tests
Configure the database to use Postgres and create the postgis extension
Run the tests
The text was updated successfully, but these errors were encountered:
Laravel Version
10.37.1
PHP Version
8.3.0
Database Driver & Version
Postgres 14 + Postgis
Description
After the inclusion of 57ae89a, dropping types is now also trying to drop types added by extensions (e.g.
postgis
). This is causing the database reset step of tests to fail.Steps To Reproduce
protected bool $dropTypes = true;
to a feature test with multiple testsThe text was updated successfully, but these errors were encountered: