mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
16 lines
No EOL
299 B
PHP
16 lines
No EOL
299 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TrackType extends Model
|
|
{
|
|
protected $table = 'track_types';
|
|
|
|
const ORIGINAL_TRACK = 1;
|
|
const OFFICIAL_TRACK_REMIX = 2;
|
|
const FAN_TRACK_REMIX = 3;
|
|
const PONIFIED_TRACK = 4;
|
|
const OFFICIAL_AUDIO_REMIX = 5;
|
|
} |