Files
openfoodnetwork/db/migrate/20220629080906_add_note_to_orders.rb
2022-07-05 10:09:20 +02:00

6 lines
147 B
Ruby

class AddNoteToOrders < ActiveRecord::Migration[6.1]
def change
add_column :spree_orders, :note, :string, null: false, default: ""
end
end