summaryrefslogtreecommitdiff
path: root/app/frontend/model/UserPreference.php
blob: 07411285a84e40faab666327c4201d595daf8cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

Prado::using('Application.db.ActiveRecord');

class UserPreference extends ActiveRecord {

    const TABLE = 'user_selections';

    public $UserID;
    public $CalendarID;

    public static $COLUMN_MAPPING = [
        '_user' => 'UserID',
        '_calendar' => 'CalendarID'
    ];

}

?>