<?php

use Phalcon\Mvc\Model\Migration;

class AlterNotificationsMigration_513 extends Migration {
    public function up() {

        self::$connection->execute("
            ALTER TABLE jaga.notifications
                ADD COLUMN IF NOT EXISTS message_en text;
        ");
    }

    public function down() {
        self::$connection->execute("
            ALTER TABLE jaga.notifications
                DROP COLUMN IF EXISTS message_en;
        ");
    }
}