<?php

use Phalcon\Mvc\Model\Migration;

class AlterGuideStranasMigration_359 extends Migration
{
    public function up()
    {
        $this->down();

        self::$connection->execute('
            alter table jaga.str_target_guide alter column bobot type decimal(10,2);
        ');
    }

    public function down()
    {

        self::$connection->execute('
          alter table jaga.str_target_guide alter column bobot type int;
        ');
    }
}

