AddModeratedFlagToChannel::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        $builder = Schema::connection('mysql-chat');
        $builder->table('channels', function ($table) {
            $table->dropColumn('moderated');
        });
    }
AddModeratedFlagToChannel