Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix table name not being used and migration error (#36)
* Fix table name not being used The pennant config is using `stores` and same when creating driver in this file, however, when configuring database driver, it reads from `drivers` which is not found. * Remove migration file registration According to the docs, we were asked to run `php artisan vendor:publish --provider="Laravel\Pennant\PennantServiceProvider"` and the migration will be published to the base `database/migrations` directory. And after that when we run `php artisan migrate`, both migration files will be ran and causes error.
- Loading branch information