mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-04-01 12:52:13 +02:00
9 lines
296 B
Ruby
9 lines
296 B
Ruby
class Rpush410Updates < ActiveRecord::Migration["#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}"]
|
|
def self.up
|
|
add_column :rpush_notifications, :dry_run, :boolean, null: false, default: false
|
|
end
|
|
|
|
def self.down
|
|
remove_column :rpush_notifications, :dry_run
|
|
end
|
|
end
|