Migration Customization
If you are not going to use Love's default migrations, you should export default config file.
$ php artisan vendor:publish --tag=love-config
Change load_default_migrations
boolean flag value to false
in published config/love.php
file.
Export default migrations using the vendor:publish
Artisan command.
$ php artisan vendor:publish --tag=love-migrations
Make changes in published files and migrate them.
$ php artisan migrate
Updated almost 5 years ago