mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
12 lines
No EOL
165 B
PHP
12 lines
No EOL
165 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Follower extends Model
|
|
{
|
|
protected $table = 'followers';
|
|
|
|
public $timestamps = false;
|
|
} |