mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-02 06:51:40 +00:00
9 lines
175 B
Ruby
9 lines
175 B
Ruby
class RemoveEnableMailDeliveryPreference < ActiveRecord::Migration
|
|
def up
|
|
Spree::Preference.delete_all("key ilike '%enable_mail_delivery%'")
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|