mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-17 00:07:24 +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
|