0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-08 13:37:11 +00:00
mastodon/db/post_migrate/20190715031050_drop_subscriptions.rb

12 lines
199 B
Ruby
Raw Normal View History

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