mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-01 06:41:41 +00:00
Adding canceled_at column to standing_orders table
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddCanceledAtToStandingOrders < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :standing_orders, :canceled_at, :datetime
|
||||
end
|
||||
end
|
||||
@@ -1099,6 +1099,7 @@ ActiveRecord::Schema.define(:version => 20170921065259) do
|
||||
t.datetime "updated_at", :null => false
|
||||
t.integer "bill_address_id", :null => false
|
||||
t.integer "ship_address_id", :null => false
|
||||
t.datetime "canceled_at"
|
||||
end
|
||||
|
||||
add_index "standing_orders", ["bill_address_id"], :name => "index_standing_orders_on_bill_address_id"
|
||||
|
||||
Reference in New Issue
Block a user