Files
snipe-it/app/models/Throttle.php
T
2015-03-17 15:36:11 -07:00

13 lines
172 B
PHP

<?php
class Throttle extends Elegant
{
protected $table = 'throttle';
public function user()
{
return $this->belongsTo('User', 'user_id');
}
}