1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Models/Affiliate.php
2015-04-13 22:43:51 +03:00

10 lines
146 B
PHP

<?php namespace App\Models;
use Eloquent;
class Affiliate extends Eloquent
{
public $timestamps = true;
protected $softDelete = true;
}