mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
14 lines
448 B
PHP
14 lines
448 B
PHP
<?php
|
|
|
|
League\FactoryMuffin\Facade::define(
|
|
'Reminder', [
|
|
'user_id' => 'factory|User',
|
|
'startdate' => 'date|Y-m-d',
|
|
'enddate' => 'date|Y-m-d',
|
|
'active' => 'boolean',
|
|
'notnow' => 'boolean',
|
|
'remindersable_id' => 0,
|
|
'remindersable_type' => '',
|
|
]
|
|
);
|