Closed
Description
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.
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