The package works on the basis of migrations, using the same model. Creating update files and rolling them out. This is convenient in deploy app, when you need some data to be added automatically. And at the first launch, when there are critical parts of the application.
Commands:
- Create update
php artisan update:make add_permissions_to_admin
- Run update
php artisan update:migrate
- Rollback update
php artisan update:rollback