snapshot schedule source data

This commit is contained in:
Yisroel Baum 2026-08-10 22:36:14 +03:00
parent 14fe2fcb46
commit f500bd6095
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
14 changed files with 84 additions and 87 deletions

View file

@ -9,7 +9,9 @@ use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property int $schedule_id
* @property int $element_id
* @property string $element_name
* @property string $element_kind
* @property list<string> $element_path
* @property string $scheduled_date
* @property int $position
*
@ -21,7 +23,9 @@ use Illuminate\Database\Eloquent\Model;
*/
#[Fillable([
'schedule_id',
'element_id',
'element_name',
'element_kind',
'element_path',
'scheduled_date',
'position',
])]
@ -38,7 +42,7 @@ class ScheduleAssignmentModel extends Model
{
return [
'schedule_id' => 'integer',
'element_id' => 'integer',
'element_path' => 'array',
'position' => 'integer',
];
}