Skip to content

Commit

Permalink
fix: allow longer bank account descriptions (#1062)
Browse files Browse the repository at this point in the history
* Allow longer bank account descriptions

---------

Co-authored-by: Philipp Rothmann <philipprothmann@posteo.de>
  • Loading branch information
kidhab and yksflip committed Jul 4, 2024
1 parent f8b92eb commit 48567cf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions db/migrate/20240410093313_change_bank_account_desc.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 48567cf

Please sign in to comment.