Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 550 Bytes

EN.md

File metadata and controls

20 lines (16 loc) · 550 Bytes

Laravel updates package

Русская версия

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:

  1. Create update
php artisan update:make add_permissions_to_admin
  1. Run update
php artisan update:migrate
  1. Rollback update
php artisan update:rollback