mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-24 01:13:21 +00:00
9 lines
180 B
Ruby
9 lines
180 B
Ruby
class RemoveEnableMailDeliveryPreference < ActiveRecord::Migration[4.2]
|
|
def up
|
|
Spree::Preference.delete_all("key ilike '%enable_mail_delivery%'")
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|