aboutsummaryrefslogtreecommitdiff
path: root/lib/models/PersonalNotificationsUser.php
blob: 0b7373f9e2d8438517a64e9e308b37ffe9f1d1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class PersonalNotificationsUser extends SimpleORMap
{
    protected static function configure($config = [])
    {
        $config['db_table'] = 'personal_notifications_user';
        $config['belongs_to']['notification'] = [
            'class_name'  => 'PersonalNotifications',
            'foreign_key' => 'personal_notification_id'
        ];
        parent::configure($config);
    }
}