1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
This commit is contained in:
Matt Jankowski 2024-07-31 14:07:12 +00:00 committed by GitHub
commit 55d294721a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,11 @@
# frozen_string_literal: true # frozen_string_literal: true
class RemoveDevices < ActiveRecord::Migration[5.0] class RemoveDevices < ActiveRecord::Migration[5.0]
def change def up
drop_table :devices if table_exists?(:devices) drop_table :devices if table_exists?(:devices)
end end
def down
raise ActiveRecord::IrreversibleMigration
end
end end