AddIsCommandDefaultOn::down PHP Method

down() public method

Reverse the migrations.
public down ( )
    public function down()
    {
        Schema::table('commands', function (Blueprint $table) {
            $table->dropColumn('default_on');
        });
    }
AddIsCommandDefaultOn