mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-21 08:11:11 -04:00
8 lines
131 B
PHP
8 lines
131 B
PHP
<?php namespace App\Models;
|
|
|
|
class Affiliate extends Eloquent
|
|
{
|
|
public $timestamps = true;
|
|
protected $softDelete = true;
|
|
}
|