<?php

use Phalcon\Mvc\Model\Migration;

class NotificationsMigration_250 extends Migration
{
    public function up()
    {
        self::$connection->execute("
            ALTER TABLE jaga.notifications ADD category INT;
        ");
    }
    public function down()
    {
        self::$connection->execute("
            ALTER TABLE jaga.notifications DROP COLUMN category;
        ");
    }
}
