TriStarRiT
Results
1
comments of
TriStarRiT
You can change your migration by adding default value ``` $table->integer('sort_order')->default(0) ``` Or make a new migration to refactor existing one by `php artisan make:migration set_default_sort_order_into_YOUR-TABLE-NAME_table ` And insert this...