From 5add0af4b83022e2f96e7bc36360acb0bbccec4b Mon Sep 17 00:00:00 2001 From: huang Date: Fri, 23 Dec 2016 13:45:27 +0800 Subject: [PATCH] =?UTF-8?q?mail=20notifiacation=20=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E8=BF=81=E7=A7=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../20161223030701_update_user_mail_notification.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 db/migrate/20161223030701_update_user_mail_notification.rb diff --git a/db/migrate/20161223030701_update_user_mail_notification.rb b/db/migrate/20161223030701_update_user_mail_notification.rb new file mode 100644 index 000000000..4c81e8afc --- /dev/null +++ b/db/migrate/20161223030701_update_user_mail_notification.rb @@ -0,0 +1,9 @@ +class UpdateUserMailNotification < ActiveRecord::Migration + def up + sql = "update `users` set mail_notification ='all' where mail_notification in ('day','week');" + execute(sql) + end + + def down + end +end