mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 05:34:30 -04:00
Fixed typo in migration vendors table
This commit is contained in:
parent
bb4e6a184b
commit
c7b8f39e9f
@ -112,7 +112,7 @@ class CreateVendorsTable extends Migration
|
|||||||
$i = 1;
|
$i = 1;
|
||||||
foreach ($paymentTerms as $pTerm) {
|
foreach ($paymentTerms as $pTerm) {
|
||||||
$data = ['public_id' => $i++];
|
$data = ['public_id' => $i++];
|
||||||
DB::table('paymet_terms')->where('id', $pTerm->id)->update($data);
|
DB::table('payment_terms')->where('id', $pTerm->id)->update($data);
|
||||||
}
|
}
|
||||||
|
|
||||||
Schema::table('invoices', function (Blueprint $table) {
|
Schema::table('invoices', function (Blueprint $table) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user