AddContentRequestedToDvsModelFields::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::table('dvs_model_fields', function ($table) {
            $table->dropColumn('content_requested');
        });
    }
AddContentRequestedToDvsModelFields