diff --git a/db/migrate/20230405140343_add_buyer_livin_value_check.rb b/db/migrate/20230405140343_add_buyer_livin_value_check.rb new file mode 100644 index 000000000..feafc610b --- /dev/null +++ b/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 diff --git a/db/schema.rb b/db/schema.rb index 77ad1f3ea..8a14eed1d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -573,6 +573,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_04_12_143245) do t.string "county" t.integer "discounted_sale_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 ["created_by_id"], name: "index_sales_logs_on_created_by_id" t.index ["old_id"], name: "index_sales_logs_on_old_id", unique: true