1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-23 22:16:57 +00:00
mastodon/db/post_migrate/20190715031050_drop_subscriptions.rb

12 lines
199 B
Ruby
Raw Normal View History

2019-07-21 04:08:00 +02:00
# frozen_string_literal: true
class DropSubscriptions < ActiveRecord::Migration[5.2]
def up
drop_table :subscriptions
end
def down
raise ActiveRecord::IrreversibleMigration
end
end