Use this shortcut to add soft deletes:
use Abagayev\Laravel\MigrationShortcuts\Migrations\AddSoftDeletesMigration;
class AddSoftDeletesToTableMigration extends AddSoftDeletesMigration
{
protected $table = 'table_name';
}Don't forget to add soft deletes trait to the model:
use Illuminate\Database\Eloquent\SoftDeletes;
class MyModel
{
use SoftDeletes;
}Soft delete columns are going to be dropped on the migration rollback.