49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class ArtworkAwardStat extends Model
|
|
{
|
|
protected $table = 'artwork_medal_stats';
|
|
|
|
public $primaryKey = 'artwork_id';
|
|
public $incrementing = false;
|
|
public $timestamps = true;
|
|
|
|
protected $fillable = [
|
|
'artwork_id',
|
|
'gold_count',
|
|
'silver_count',
|
|
'bronze_count',
|
|
'score_total',
|
|
'score_7d',
|
|
'score_30d',
|
|
'last_medaled_at',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
|
|
protected $casts = [
|
|
'artwork_id' => 'integer',
|
|
'gold_count' => 'integer',
|
|
'silver_count' => 'integer',
|
|
'bronze_count' => 'integer',
|
|
'score_total' => 'integer',
|
|
'score_7d' => 'integer',
|
|
'score_30d' => 'integer',
|
|
'last_medaled_at' => 'datetime',
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
|
|
public function artwork(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Artwork::class);
|
|
}
|
|
}
|