1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-21 23:32:39 +00:00
pixelfed/app/CollectionItem.php
2021-09-01 22:46:57 -06:00

30 lines
493 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use App\HasSnowflakePrimary;
class CollectionItem extends Model
{
use HasSnowflakePrimary;
public $fillable = [
'collection_id',
'object_type',
'object_id',
'order'
];
/**
* Indicates if the IDs are auto-incrementing.
*
* @var bool
*/
public $incrementing = false;
public function collection()
{
return $this->belongsTo(Collection::class);
}
}