mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-01-31 11:16:42 +01:00
18 lines
299 B
PHP
18 lines
299 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class PinnedPlaylist extends Model
|
||
|
{
|
||
|
protected $table = 'pinned_playlists';
|
||
|
|
||
|
public function user()
|
||
|
{
|
||
|
return $this->belongsTo('User');
|
||
|
}
|
||
|
|
||
|
public function playlist()
|
||
|
{
|
||
|
return $this->belongsTo('Playlist');
|
||
|
}
|
||
|
}
|