Browse Source

Add buyer_livein_value_check column

pull/1521/head
Kat 3 years ago
parent
commit
2e7bb266e5
  1. 5
      db/migrate/20230405140343_add_buyer_livin_value_check.rb
  2. 1
      db/schema.rb

5
db/migrate/20230405140343_add_buyer_livin_value_check.rb

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

1
db/schema.rb

@ -573,6 +573,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_04_12_143245) do
t.string "county" t.string "county"
t.integer "discounted_sale_value_check" t.integer "discounted_sale_value_check"
t.integer "student_not_child_value_check" t.integer "student_not_child_value_check"
t.integer "buyer_livein_value_check"
t.index ["bulk_upload_id"], name: "index_sales_logs_on_bulk_upload_id" t.index ["bulk_upload_id"], name: "index_sales_logs_on_bulk_upload_id"
t.index ["created_by_id"], name: "index_sales_logs_on_created_by_id" t.index ["created_by_id"], name: "index_sales_logs_on_created_by_id"
t.index ["old_id"], name: "index_sales_logs_on_old_id", unique: true t.index ["old_id"], name: "index_sales_logs_on_old_id", unique: true

Loading…
Cancel
Save