Browse Source

Add mortgageused column

pull/1139/head
Kat 3 years ago
parent
commit
3277c011ca
  1. 7
      db/migrate/20230104083951_add_mortgageused.rb
  2. 1
      db/schema.rb

7
db/migrate/20230104083951_add_mortgageused.rb

@ -0,0 +1,7 @@
class AddMortgageused < ActiveRecord::Migration[7.0]
def change
change_table :sales_logs, bulk: true do |t|
t.column :mortgageused, :integer
end
end
end

1
db/schema.rb

@ -458,6 +458,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_01_04_164318) do
t.integer "savings_value_check"
t.integer "deposit_value_check"
t.integer "hb"
t.integer "mortgageused"
t.index ["created_by_id"], name: "index_sales_logs_on_created_by_id"
t.index ["managing_organisation_id"], name: "index_sales_logs_on_managing_organisation_id"
t.index ["owning_organisation_id"], name: "index_sales_logs_on_owning_organisation_id"

Loading…
Cancel
Save