mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
28 lines
526 B
PHP
28 lines
526 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class WatermarkingJob extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'watermarking_jobs';
|
|
protected $fillable = [
|
|
'video_id',
|
|
'job_id',
|
|
'status',
|
|
];
|
|
|
|
protected $dates = [
|
|
'deleted_at',
|
|
];
|
|
|
|
public function video()
|
|
{
|
|
return $this->hasOne(StudioPlusVideo::class, 'id', 'video_id');
|
|
}
|
|
}
|