Database stuff.

This commit is contained in:
James Cole
2016-04-25 11:44:41 +02:00
parent 51d97cdca5
commit b4f18dbe77
3 changed files with 61 additions and 1 deletions

View File

@@ -225,7 +225,7 @@ class TestData
Budget::firstOrCreateEncrypted(['name' => 'Car', 'user_id' => $user->id]);
// some empty budgets.
foreach (['A', 'B', 'C', 'D', 'E'] as $letter) {
foreach (['A'] as $letter) {
Budget::firstOrCreateEncrypted(['name' => 'Empty budget ' . $letter, 'user_id' => $user->id]);
}