<?php

use Phalcon\Mvc\Model\Migration;

/**
 * Class RolesMigration_211
 */
class UmUserMigration_168 extends Migration
{
    /**
     * Run the migrations
     *
     * @return void
     */
    public function up()
    {
        self::$connection->execute('
            ALTER TABLE public.um_user ADD  um_user_korsupgah_password VARCHAR(255);
        ');
    }

    /**
     * Reverse the migrations
     *
     * @return void
     */
    public function down()
    {
        self::$connection->execute('
            ALTER TABLE public.um_user DROP COLUMN um_user_korsupgah_password;
        ');
    }
}
