cloudstudio / resource-generator

Resource generator for Laravel Nova
https://krato.github.io/resource-generator-docs/
MIT License
104 stars 18 forks source link

[BUG] show tables on Postgres #11

Closed mathieutu closed 5 years ago

mathieutu commented 5 years ago

Hi, I'm having the error : SQLSTATE[42704]: Undefined object: 7 ERROR: unrecognized configuration parameter "tables" (SQL: show tables) in response of the getTables request. This is probably because my database is Postgres.

We need to use proper laravel/doctrine methods instead of using raw commands:

$tables = DB::connection()->getDoctrineSchemaManager()->listTableNames();