Support the ongoing development of Laravel.io →
Database Forge Homestead
Last updated 1 year ago.
0

Does the .env have the proper credentials for your database ?

If so did you manually remove or edit migrations ? You may have to truncate your migrations table on the forge server and re run php artisan migrate but be sure to clear all caches after you truncate

Last updated 5 years ago.
0

Try to add this to User.php model class

protected $table = "users";

or add table index to app/config/auth.php:

    'providers' => [
        'users' => [
            ....
            ....
            'table'  => 'users', // **This was missing**
        ],
    ],

Last updated 5 years ago.
0

Thanks, folks--TorchSK's last suggestion was what I tried first and it worked! I did tweak my migration files--didn't actually use them for development--so I likely have work to do there, too, Cameron. Awesome resource, this forum, I hope I learn enough to contribute soon. Thanks again!

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.