Add missing migration file and translations after 7d5155b

This commit is contained in:
Patrick Gansterer 2021-03-04 01:25:19 +01:00
parent dee1241888
commit 38193e43a9
3 changed files with 7 additions and 0 deletions

View File

@ -65,6 +65,7 @@ de:
ordergroup: Bestellgruppe
user: Eingetragen von
financial_transaction_class:
ignore_for_account_balance: Für Kontostand ignorieren
name: Name
financial_transaction_type:
bank_account: Bankkonto

View File

@ -65,6 +65,7 @@ en:
ordergroup: Ordergroup
user: Entered by
financial_transaction_class:
ignore_for_account_balance: Ignore for account balance
name: Name
financial_transaction_type:
bank_account: Bank Account

View File

@ -0,0 +1,5 @@
class AddIgnoreForAccountBalanceToFinancialTransactionClasses < ActiveRecord::Migration[4.2]
def change
add_column :financial_transaction_classes, :ignore_for_account_balance, :boolean, default: false, null: false
end
end