mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
Fix iban in test data.
This commit is contained in:
@@ -73,7 +73,7 @@ class TestData
|
||||
'active' => 1,
|
||||
'encrypted' => 1,
|
||||
'virtual_balance' => 0,
|
||||
'iban' => $account['iban'] ?? null,
|
||||
'iban' => isset($account['iban']) ? Crypt::encrypt($account['iban']) : null,
|
||||
];
|
||||
}
|
||||
DB::table('accounts')->insert($insert);
|
||||
|
Reference in New Issue
Block a user