Answers for "laravel lumen undo migration"

14

laravel rollback last migration

php artisan migrate:rollback --step=1
Posted by: Guest on May-13-2020
0

Laravel rollback all migrations

php artisan migrate:reset
Posted by: Guest on September-04-2021
0

laravel softdelete migration

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
 
Schema::table('flights', function (Blueprint $table) {
    $table->softDeletes();
});
 
Schema::table('flights', function (Blueprint $table) {
    $table->dropSoftDeletes();
});
Posted by: Guest on April-27-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language