mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-06 06:01:21 +00:00
Can now create recurring transactions. #1469
This commit is contained in:
@@ -35,6 +35,18 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
*/
|
||||
class RecurrenceMeta extends Model
|
||||
{
|
||||
/** @var array */
|
||||
protected $casts
|
||||
= [
|
||||
'created_at' => 'datetime',
|
||||
'updated_at' => 'datetime',
|
||||
'deleted_at' => 'datetime',
|
||||
'name' => 'string',
|
||||
'value' => 'string',
|
||||
];
|
||||
/** @var array */
|
||||
protected $fillable = ['recurrence_id', 'name', 'value'];
|
||||
/** @var string */
|
||||
protected $table = 'recurrences_meta';
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user