tab/db/migrate/20190508204815_rpush_3_3_1_updates.rb

12 lines
482 B
Ruby
Raw Normal View History

2019-05-08 20:50:19 +00:00
class Rpush331Updates < ActiveRecord::VERSION::MAJOR >= 5 ? ActiveRecord::Migration[5.0] : ActiveRecord::Migration
def self.up
change_column :rpush_notifications, :device_token, :string, null: true
change_column :rpush_feedback, :device_token, :string, null: true
end
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
end