Add tax_category_id to spree_shipping_methods

This commit is contained in:
Matt-Yorkley
2021-02-07 12:50:51 +00:00
parent 8fccdbf92f
commit 431706b704
2 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class AddTaxCategoryIdToShippingMethods < ActiveRecord::Migration
def change
add_column :spree_shipping_methods, :tax_category_id, :integer
end
end

View File

@@ -807,6 +807,7 @@ ActiveRecord::Schema.define(version: 20210320003951) do
t.boolean "require_ship_address", default: true
t.text "description"
t.string "tracking_url", limit: 255
t.integer "tax_category_id"
end
create_table "spree_shipping_methods_zones", id: false, force: :cascade do |t|