When iam about to install simpleauth, the Oil-Console gives me following error, when I try to "oil refine migrate --package:auth": "Already on the latest migration for package:auth.".
I have already tried to do "oil refine migrate:down --package:all". Please help me!
Have you configured the Auth config file, and the simpleauth config file, in your app?
The migrations will check the driver defined in your app/config/auth.php. Which in this case should be "Simpleauth", and is case sensitive. If it doesn't find it, it will run but skip all database changes.
If it has already run the migrations, you have to revert them first, to be able to run them again. You can check app/config/<your environment>/migrations.php to see which ones have already run.
I don't think you can do a migrate:down with --all, it goes down one at the time...