mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 21:47:59 +01:00
9 lines
132 B
PHP
9 lines
132 B
PHP
|
<?php
|
||
|
|
||
|
namespace Entities;
|
||
|
|
||
|
class Follower extends \Eloquent {
|
||
|
protected $table = 'followers';
|
||
|
|
||
|
public $timestamps = false;
|
||
|
}
|