I'm adding the soft delete columns to my table in a migration:
public function up()
{
Schema::table("users", function ($table) {
$table->softDeletes();
});
}
But, how can I remove these in my down() function, if I roll back the migration? Is there a built-in method to do this, or do I just manually delete the columns that get added?