mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
8 lines
119 B
PHP
8 lines
119 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class TrackType extends Model
|
||
|
{
|
||
|
protected $table = 'track_types';
|
||
|
}
|