Import schema migration for spree gem upgrade step 5

This commit is contained in:
enricostano
2017-04-13 10:35:25 +02:00
committed by Rob Harrington
parent a70cdaadb6
commit e7ecdcc251
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
# This migration comes from spree (originally 20130301205200)
class AddTrackingUrlToSpreeShippingMethods < ActiveRecord::Migration
def change
add_column :spree_shipping_methods, :tracking_url, :string
end
end

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20170413074528) do
ActiveRecord::Schema.define(:version => 20170413083148) do
create_table "account_invoices", :force => true do |t|
t.integer "user_id", :null => false
@@ -870,6 +870,7 @@ ActiveRecord::Schema.define(:version => 20170413074528) do
t.datetime "deleted_at"
t.boolean "require_ship_address", :default => true
t.text "description"
t.string "tracking_url"
end
create_table "spree_skrill_transactions", :force => true do |t|