Retrospring/db/migrate/20220909161554_rpush_3_3_1_...

14 lines
443 B
Ruby
Raw Normal View History

2022-09-11 14:20:10 -07:00
# frozen_string_literal: true
2022-09-09 09:29:40 -07:00
class Rpush331Updates < ActiveRecord::Migration[5.0]
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