. Licensed under the GNU Affero General Public License v3.0. // See the LICENCE file in the repository root for full licence text. namespace App\Models\Forum; /** * @property int $forum_id * @property int $mark_time * @property int $user_id */ class ForumTrack extends Model { public $incrementing = false; public $timestamps = false; protected $casts = ['mark_time' => 'datetime']; protected $dateFormat = 'U'; protected $primaryKey = ':composite'; protected $primaryKeys = ['forum_id', 'user_id']; protected $table = 'phpbb_forums_track'; }