class Rpush331Updates
Public Class Methods
down()
click to toggle source
# File lib/generators/templates/rpush_3_3_1_updates.rb, line 7 def self.down change_column :rpush_notifications, :device_token, :string, { null: true, limit: 64 } change_column :rpush_feedback, :device_token, :string, { null: true, limit: 64 } end
up()
click to toggle source
# File lib/generators/templates/rpush_3_3_1_updates.rb, line 2 def self.up change_column :rpush_notifications, :device_token, :string, null: true change_column :rpush_feedback, :device_token, :string, null: true end