mirror of
https://github.com/koel/koel
synced 2024-12-25 12:03:06 +00:00
9 lines
108 B
PHP
9 lines
108 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
class ContributingArtist extends Artist
|
||
|
{
|
||
|
protected $table = 'artists';
|
||
|
}
|