mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-05 02:41:33 +00:00
6 lines
150 B
Ruby
6 lines
150 B
Ruby
class AddDisplayToPaymentMethods < ActiveRecord::Migration
|
|
def change
|
|
add_column :payment_methods, :display, :string, :default => nil
|
|
end
|
|
end
|