Browse Source

Add jointmore column

pull/885/head
Kat 3 years ago
parent
commit
59546d5801
  1. 5
      db/migrate/20220920130518_add_joint_buyer_number_column.rb
  2. 3
      db/schema.rb

5
db/migrate/20220920130518_add_joint_buyer_number_column.rb

@ -0,0 +1,5 @@
class AddJointBuyerNumberColumn < ActiveRecord::Migration[7.0]
def change
add_column :sales_logs, :jointmore, :integer
end
end

3
db/schema.rb

@ -332,9 +332,10 @@ ActiveRecord::Schema[7.0].define(version: 2022_09_23_093628) do
t.string "purchid"
t.integer "type"
t.integer "ownershipsch"
t.integer "jointpur"
t.string "othtype"
t.integer "beds"
t.integer "jointmore"
t.integer "jointpur"
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