Adding paused_at column to standing orders

This commit is contained in:
Rob Harrington
2016-12-07 15:23:37 +11:00
parent 736de4826f
commit 961df756c5
2 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class AddPausedAtToStandingOrders < ActiveRecord::Migration
def change
add_column :standing_orders, :paused_at, :datetime
end
end

View File

@@ -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"