Skip to content

Commit a5c9ffc

Browse files
committed
PLUG-106: Formatting, db column comment
1 parent f5f3bbd commit a5c9ffc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Model/Transaction/Payment/PaymentTransactionRepository.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ public function create(): PaymentTransactionDataInterface
5757
*/
5858
public function get(int $entityId): PaymentTransactionDataInterface
5959
{
60-
6160
if (!$entityId) {
6261
$errorMsg = static::INPUT_EXCEPTION;
6362
throw new InputException(__($errorMsg, 'EntityId'));

etc/db_schema.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<column name="payment_uuid" xsi:type="varchar" length="128" nullable="true" comment="TL Payment UUID"/>
5353
<column name="amount" xsi:type="int" nullable="true" unsigned="true" comment="Refund Amount"/>
5454
<column name="status" xsi:type="varchar" length="128" nullable="true" comment="Status"/>
55-
<column name="is_locked" xsi:type="smallint" unsigned="true" nullable="true" identity="false" comment="Is Used For Create Order"/>
55+
<column name="is_locked" xsi:type="smallint" unsigned="true" nullable="true" identity="false" comment="Is Transaction Locked"/>
5656
<column name="failure_reason" xsi:type="varchar" nullable="true" length="128" comment="Payment Failure Reason" />
5757
<column name="created_at" xsi:type="timestamp" default="CURRENT_TIMESTAMP" nullable="false" comment="Created At"/>
5858
<column name="updated_at" xsi:type="timestamp" on_update="true" default="CURRENT_TIMESTAMP" nullable="false" comment="Updated At"/>

0 commit comments

Comments
 (0)