mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
e86adccf19
* Save progress * Create a new action_log table to replace asset_log. Use Polymorphism to generalize class and targets. Port everything I can find to use it. Add a migration to port the asset_logs table to action_logs. * Allow accepted_id to be nullable. * Comment out the thread_id migration, because it b0rks on a new database with the move. I'm unsure if the thread_id does anything...It doesn't seem to be used * Clean up all old methods from Actionlog model. Port everything to use new cleaner interface. * Port the actionlog factory to fix travis. * Adjust code to work on php5. Also fix lurking adminlog call. * Remove weird code * Port the pave command. Also fix dangling adminlog
38 lines
839 B
PHP
Executable file
38 lines
839 B
PHP
Executable file
<?php
|
|
namespace App\Models;
|
|
|
|
use App\Models\Loggable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class LicenseSeat extends Model implements ICompanyableChild
|
|
{
|
|
use CompanyableChildTrait;
|
|
use SoftDeletes;
|
|
use Loggable;
|
|
|
|
protected $dates = ['deleted_at'];
|
|
protected $guarded = 'id';
|
|
protected $table = 'license_seats';
|
|
|
|
public function getCompanyableParents()
|
|
{
|
|
return ['asset', 'license'];
|
|
}
|
|
|
|
public function license()
|
|
{
|
|
return $this->belongsTo('\App\Models\License', 'license_id');
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('\App\Models\User', 'assigned_to')->withTrashed();
|
|
}
|
|
|
|
public function asset()
|
|
{
|
|
return $this->belongsTo('\App\Models\Asset', 'asset_id')->withTrashed();
|
|
}
|
|
}
|