From 48567cff3d410fd5610b719649f889b9048563d7 Mon Sep 17 00:00:00 2001 From: kidhab <32387157+kidhab@users.noreply.github.com> Date: Fri, 5 Jul 2024 00:46:27 +0200 Subject: [PATCH] fix: allow longer bank account descriptions (#1062) * Allow longer bank account descriptions --------- Co-authored-by: Philipp Rothmann --- db/migrate/20240410093313_change_bank_account_desc.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 db/migrate/20240410093313_change_bank_account_desc.rb diff --git a/db/migrate/20240410093313_change_bank_account_desc.rb b/db/migrate/20240410093313_change_bank_account_desc.rb new file mode 100644 index 000000000..8bfc0db54 --- /dev/null +++ b/db/migrate/20240410093313_change_bank_account_desc.rb @@ -0,0 +1,9 @@ +class ChangeBankAccountDesc < ActiveRecord::Migration[7.0] + def up + change_column :bank_accounts, :description, :text + end + + def down + change_column :bank_accounts, :description, :string + end +end