Add automatic_notifications column to order_cycles table

This commit is contained in:
Matt-Yorkley
2021-11-29 01:49:05 +00:00
committed by Sebastian Castro
parent e78cea457c
commit 492325b74a
2 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class AddAutomaticNotificationsToOrderCycles < ActiveRecord::Migration[6.1]
def change
add_column :order_cycles, :automatic_notifications, :boolean, default: false
end
end

View File

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