Describe the bug
After installation via composer, it seems to break the package laravel-adjacency-list. Even without using the postgres-range package, I get an Illuminate\Database\QueryException:
SQLSTATE[42P01]: Undefined table: 7 ERROR: Relation »laravel_cte« doesn't exist
To Reproduce
Steps to reproduce the behavior:
- install
staudenmeir/laravel-adjacency-list via composer
- use
staudenmeir/laravel-adjacency-list on model 'X'
- install
belamov/postges-range
- run database migration
- define a cast for datarange column in model 'Y'
- access a laravel route where model 'X' is involved
- see error above
Expected behavior
Installation of postgres-range should not affect another package
Additional context
I guess it might be related to hints on postgres grammar, but unfortunately I'm not familiar with CTE and don't know how to deal with it.
Any help and advice is very appreciated. Thanks in advance.
Describe the bug
After installation via composer, it seems to break the package laravel-adjacency-list. Even without using the postgres-range package, I get an
Illuminate\Database\QueryException:SQLSTATE[42P01]: Undefined table: 7 ERROR: Relation »laravel_cte« doesn't existTo Reproduce
Steps to reproduce the behavior:
staudenmeir/laravel-adjacency-listvia composerstaudenmeir/laravel-adjacency-liston model 'X'belamov/postges-rangeExpected behavior
Installation of postgres-range should not affect another package
Additional context
I guess it might be related to hints on postgres grammar, but unfortunately I'm not familiar with CTE and don't know how to deal with it.
Any help and advice is very appreciated. Thanks in advance.