1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Add timestamps to company gateways migration

This commit is contained in:
David Bomba 2021-05-26 07:29:53 +10:00
parent 60e21cc1be
commit 30c302d1b6

View File

@ -1361,6 +1361,9 @@ info("translated gateway_type = {$translated_gateway_type}");
'custom_value2' => '',
'custom_value3' => '',
'custom_value4' => '',
'created_at' => $account_gateway->created_at ? Carbon::parse($account_gateway->created_at)->toDateString() : null,
'updated_at' => $account_gateway->updated_at ? Carbon::parse($account_gateway->updated_at)->toDateString() : null,
'deleted_at' => $account_gateway->deleted_at ? Carbon::parse($account_gateway->deleted_at)->toDateString() : null,
];
// }
}