<?php

class UpdateIsShowProdukDiskusiMigration_469 extends \Phalcon\Mvc\Model\Migration {
    public function up()
    {
        $this->down();

        self::$connection->execute("
            UPDATE jaga.produk SET is_show = 0 WHERE id_index IN (18, 19);
        ");
    }

    public function down()
    {
        self::$connection->execute("
            UPDATE jaga.produk SET is_show = 1 WHERE id_index IN (18, 19);
        ");
    }
}