Add processed_at column to order_cycles table

This commit is contained in:
Matt-Yorkley
2021-11-29 00:43:47 +00:00
committed by Sebastian Castro
parent b786d89fe9
commit 17a112907c
2 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class AddProcessedAtToOrderCycles < ActiveRecord::Migration[6.1]
def change
add_column :order_cycles, :processed_at, :datetime
end
end

View File

@@ -293,6 +293,7 @@ ActiveRecord::Schema.define(version: 2021_12_17_094141) do
t.integer "coordinator_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.datetime "processed_at"
end
create_table "producer_properties", force: :cascade do |t|