Adding standing_orders_confirmed_at flag to order_cycles

This commit is contained in:
Rob Harrington
2016-12-09 10:49:43 +11:00
parent deebc31c34
commit 2a03477597
2 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class AddStandingOrdersConfirmedAtToOrderCycles < ActiveRecord::Migration
def change
add_column :order_cycles, :standing_orders_confirmed_at, :datetime
end
end

View File

@@ -318,9 +318,10 @@ ActiveRecord::Schema.define(:version => 20170921065259) do
t.datetime "orders_open_at"
t.datetime "orders_close_at"
t.integer "coordinator_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.datetime "standing_orders_placed_at"
t.datetime "standing_orders_confirmed_at"
end
create_table "producer_properties", :force => true do |t|