Add reference_calculator

This commit is contained in:
Patrick Gansterer 2019-11-11 12:09:18 +01:00
parent d75b881318
commit e16f03eebf
11 changed files with 133 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddBankAccountToFinancialTransactionType < ActiveRecord::Migration
def change
add_reference :financial_transaction_types, :bank_account
end
end

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20181205000000) do
ActiveRecord::Schema.define(version: 20181205010000) do
create_table "article_categories", force: :cascade do |t|
t.string "name", limit: 255, default: "", null: false
@ -124,6 +124,7 @@ ActiveRecord::Schema.define(version: 20181205000000) do
t.string "name", limit: 255, null: false
t.integer "financial_transaction_class_id", limit: 4, null: false
t.string "name_short", limit: 255
t.integer "bank_account_id", limit: 4
end
add_index "financial_transaction_types", ["name_short"], name: "index_financial_transaction_types_on_name_short", using: :btree