AltBrian
AltBrian

Reputation: 2562

Unknown database error when I run php artisan migrate

I have cloned one of my larval projects on to another laptop and I have run composer install, php artisan key:generate. I have changed the .env file to create the database. When I run php artisan migrate I get the following error

 [Illuminate\Database\QueryException]                                                  
 SQLSTATE[HY000] [1049] Unknown database 'student' (SQL: select * from   information_schema.tables where table_schema = student and table_name =migrations)

Any help would be appreciated.

Upvotes: 1

Views: 3586

Answers (1)

rbaskam
rbaskam

Reputation: 749

The php artisan migrate command doesn't create the database for you. Here is a potential way you can do it with the command. Other wise create it manually.

Upvotes: 1

Related Questions