mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-26 06:57:58 +01:00
8 lines
114 B
PHP
8 lines
114 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class License extends Model
|
||
|
{
|
||
|
protected $table = 'licenses';
|
||
|
}
|