-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(schema): alter type of connector_transaction_data and connec…
…tor_refund_data columns to 1024 chars
- Loading branch information
Showing
3 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
migrations/2025-01-09-135057_increase_connector_transaction_data_length/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ALTER TABLE payment_attempt ALTER COLUMN connector_transaction_data TYPE VARCHAR(512); | ||
ALTER TABLE refund ALTER COLUMN connector_refund_data TYPE VARCHAR(512); | ||
ALTER TABLE refund ALTER COLUMN connector_transaction_data TYPE VARCHAR(512); | ||
ALTER TABLE captures ALTER COLUMN connector_capture_data TYPE VARCHAR(512); |
4 changes: 4 additions & 0 deletions
4
migrations/2025-01-09-135057_increase_connector_transaction_data_length/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ALTER TABLE payment_attempt ALTER COLUMN connector_transaction_data TYPE VARCHAR(1024); | ||
ALTER TABLE refund ALTER COLUMN connector_refund_data TYPE VARCHAR(1024); | ||
ALTER TABLE refund ALTER COLUMN connector_transaction_data TYPE VARCHAR(1024); | ||
ALTER TABLE captures ALTER COLUMN connector_capture_data TYPE VARCHAR(1024); |