mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
13 lines
409 B
PHP
13 lines
409 B
PHP
<?php
|
|
|
|
League\FactoryMuffin\Facade::define(
|
|
'TransactionJournal', [
|
|
'transaction_type_id' => 'factory|TransactionType',
|
|
'transaction_currency_id' => 'factory|TransactionCurrency',
|
|
'description' => 'text',
|
|
'date' => 'date|Y-m-d',
|
|
'completed' => 'boolean',
|
|
'user_id' => 'factory|User'
|
|
]
|
|
);
|