mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-29 16:17:59 +01:00
10 lines
149 B
PHP
10 lines
149 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Follower extends Model
|
||
|
{
|
||
|
protected $table = 'followers';
|
||
|
|
||
|
public $timestamps = false;
|
||
|
}
|