Add missing migration file and translations after 7d5155b
This commit is contained in:
parent
dee1241888
commit
38193e43a9
3 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue