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