Merge branch 'fix-migrate_new_notification_setting' into 'master'

Fix datetime format when migrating new notification settings on MySQL

Closes #15264 

See merge request !3733
This commit is contained in:
Robert Speicher 2016-04-14 22:45:52 +00:00
commit a1497ba39c
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
#
class MigrateNewNotificationSetting < ActiveRecord::Migration
def up
timestamp = Time.now
timestamp = Time.now.strftime('%F %T')
execute "INSERT INTO notification_settings ( user_id, source_id, source_type, level, created_at, updated_at ) SELECT user_id, source_id, source_type, notification_level, '#{timestamp}', '#{timestamp}' FROM members WHERE user_id IS NOT NULL"
end