mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 04:06:04 +01:00
12 lines
264 B
Ruby
12 lines
264 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class RemoveTumblrConnections < ActiveRecord::Migration[5.2]
|
||
|
def up
|
||
|
execute %(DELETE FROM services WHERE type = 'Services::Tumblr';)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
# won't have tumblr tokens anymore on rollback, but that's ok
|
||
|
end
|
||
|
end
|