summaryrefslogtreecommitdiffstats
path: root/db/migrate/20100129193813_update_mail_notification_values.rb
blob: 3d1d27c5d885403f0f715f247497b0e550c38bed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: false

# Patch the data from a boolean change.
class UpdateMailNotificationValues < ActiveRecord::Migration[4.2]
  def self.up
    # No-op
    # See 20100129193402_change_users_mail_notification_to_string.rb
  end

  def self.down
    # No-op
  end
end