Add short name to FinancialTransactionType

This commit is contained in:
Patrick Gansterer 2018-09-12 15:02:25 +02:00
parent 707501e3f8
commit 0bb0536903
6 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,6 @@
class AddNameShortToFinancialTransactionType < ActiveRecord::Migration
def change
add_column :financial_transaction_types, :name_short, :string
add_index :financial_transaction_types, :name_short
end
end