<?php

class StranasNewNotification extends \Phalcon\Mvc\Model
{

    /**
     * Initialize method for model.
     */
    public function initialize()
    {
        $this->setSchema("jaga");
        $this->setSource("str_notification");
        $this->hasMany("id", "StranasNewNotificationDetail", "id_notification");
    }
}
