mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-04-01 12:52:13 +02:00
9 lines
220 B
Ruby
9 lines
220 B
Ruby
class Rpush324Updates < ActiveRecord::Migration[5.0]
|
|
def self.up
|
|
change_column :rpush_apps, :apn_key, :text, null: true
|
|
end
|
|
|
|
def self.down
|
|
change_column :rpush_apps, :apn_key, :string, null: true
|
|
end
|
|
end
|