iberflow / laravel-model-generator

Laravel 5 model generator for an existing schema
264 stars 76 forks source link

artisan command #19

Closed ruzrulit closed 8 years ago

ruzrulit commented 8 years ago

Hello dear Sir,

I have an issue running the command: php artisan make:models It says: undefined variable: tables I've looked in the MakeModelsCommand class, on that moment when it runs getSchemaTables function, the env('DB_CONNECTION') is undefined. Could you please help me?

With kind regards, Ruzalin

ruzrulit commented 8 years ago

i have changed manually .env file and it works fine. But can we solve this issue without this change?

iberflow commented 8 years ago

Fixed it with 1.1.2 release.

arncore commented 7 years ago

This issue seems to be happening still. The DB_CONNECTION is fine but the db config which I set myself in app/config/database.php is not obtained but instead the one in .env is used.

In turn I get errors such as:

[Illuminate\Database\QueryException] SQLSTATE[HY000] [1045] Access denied for user 'homestead'@'localhost' (using password: YES) (SQL: SELECT table_name A S name FROM information_schema.tables WHERE table_type='BASE TABLE' AND table_schema = 'homestead')

SQLSTATE[HY000] [1045] Access denied for user 'homestead'@'localhost' (using password: YES)

Again, I have modified my db config in app/config/database.php and this should not be happening. Maybe I am missing something?

Thanks.

EDIT: I also solved this issue by modifying .env myself.