-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Iris bank import failing due to long descriptions (#633)
An issue was detected, where some descriptions of bank transactions exceed the column limit. Since we can't know for certain how long a description is going to be, change description column from Varchar to Text
- Loading branch information
1 parent
4351261
commit 8d4b6e7
Showing
2 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
migrations/20240515124820_change_bank_transaction_description_to_text/migration.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,2 @@ | ||
-- AlterTable | ||
ALTER TABLE "bank_transactions" ALTER COLUMN "description" SET DATA TYPE TEXT; |
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