mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
8 lines
112 B
PHP
8 lines
112 B
PHP
<?php
|
|
|
|
class Subscription extends Eloquent
|
|
{
|
|
public $timestamps = true;
|
|
protected $softDelete = true;
|
|
}
|