mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:09:53 +01:00
13 lines
443 B
Ruby
13 lines
443 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|