1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6declare(strict_types=1);
7
8namespace App\Models;
9
10/**
11 * @property int $queue_id
12 * @property int $beatmapset_id
13 * @property \Carbon\CarbonImmutable|null $start_time
14 * @property int $status
15 * @property \Carbon\CarbonImmutable|null $update_time
16 */
17class BssProcessQueue extends Model
18{
19 public $timestamps = false;
20
21 protected $casts = [
22 'start_time' => 'immutable_datetime',
23 'update_time' => 'immutable_datetime',
24 ];
25 protected $primaryKey = 'queue_id';
26 protected $table = 'bss_process_queue';
27}