-
After following the steps to install the package in Lumen (https://spatie.be/docs/laravel-permission/v4/installation-lumen), when I run the command ' |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You must have missed a step. I just followed all the steps as listed in the doc and the migration works fine without error. The output of
(Yes the 2018 date comes directly from using the copy command in the https://spatie.be/docs/laravel-permission/v4/installation-lumen doc. It is exactly as expected. You can of course use your own date by renaming the migration file after copying it and before running the migration.) |
Beta Was this translation helpful? Give feedback.
You must have missed a step.
I just followed all the steps as listed in the doc and the migration works fine without error.
a. Create the new lumen project with the composer command listed in the Lumen Installation docs
b. Create a MariaDB database, and set its name and credentials in the
.env
c. Follow all the instructions at https://spatie.be/docs/laravel-permission/v4/installation-lumen
The output of
php artisan migrate
is as expected:(Yes the 2018 date comes directly from using the copy command in the https://spatie.be/docs/lara…