Files
openfoodnetwork/db/migrate/20120327000622_prevent_nil_email.rb
Andrew Spinks cd1938a74e spree install.
2012-03-27 11:06:49 +11:00

10 lines
242 B
Ruby

class PreventNilEmail < ActiveRecord::Migration
def up
execute "UPDATE orders SET email = 'guest@example.com' WHERE email IS NULL"
execute "UPDATE orders SET email = 'guest@example.com' WHERE email = ''"
end
def down
end
end