1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

remove invoice id from payment factory

This commit is contained in:
David Bomba 2019-05-14 19:23:10 +10:00
parent 924d5b5f7b
commit 10587c0494

View File

@ -10,7 +10,6 @@ $factory->define(App\Models\Payment::class, function (Faker $faker) {
'amount' => $faker->numberBetween(1,10),
'payment_date' => $faker->date(),
'transaction_reference' => $faker->text(10),
'invoice_id' => $faker->numberBetween(1,10)
];
});