mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-19 00:27:25 +00:00
6 lines
147 B
Ruby
6 lines
147 B
Ruby
class AddNoteToOrders < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :spree_orders, :note, :string, null: false, default: ""
|
|
end
|
|
end
|