3scale/porta

View on GitHub
db/migrate/20160802141937_convert_notifications_to_utf8.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ConvertNotificationsToUtf8 < ActiveRecord::Migration
  def up
    execute 'ALTER TABLE notifications convert to character set utf8;'
  end

  def down
    execute 'ALTER TABLE notifications convert to character set latin1;'
  end
end